body {
    margin: 0;
    padding: 0;
    background: #000; /* Dark space background */
    overflow-x: hidden;
    position: relative;
}
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 2s infinite ease-in-out;
}
@keyframes twinkle {
    0% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(0.8); }
}
img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1; /* Ensure images are above stars */
}

#gallery-header {
    text-align: center;
    padding: 50px 20px 30px;
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

#gallery-title {
    font-size: 3em;
    margin: 0 0 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 191, 255, 0.5);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.3em;
    margin: 0 0 25px;
    opacity: 0.85;
    font-style: italic;
}

.intro {
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 800px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#comic-gallery {
    max-width: 100%;
    margin: 0 auto;
}

.panel-intro {
    text-align: center;
    color: #ddd;
    font-style: italic;
    font-size: 1.4em;
    margin: 40px auto 15px;
    max-width: 900px;
    padding: 20px 40px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.ac-name {
	font-weight: bold;
	color: #fff;
	text-shadpw: 0 0 8px rgba(0, 191, 255, 0.8);
}
