* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #0d0d1a;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: visible;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.9;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 0.3em;
}

.cta-text {
    text-align: center;
    margin-top: 50px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Comic Panels */
.comic-panels {
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Cloud container */
.cloud-lights {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    pointer-events: none;
}

/* Individual lights */
.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.light-1 {
    width: 300px;
    height: 300px;
    left: 10%;
    top: 20%;
    background: rgba(255, 0, 110, 0.5);
    animation: pulse1 6s ease-in-out infinite;
}

.light-2 {
    width: 350px;
    height: 350px;
    right: 10%;
    top: 10%;
    background: rgba(131, 56, 236, 0.5);
    animation: pulse2 8s ease-in-out infinite;
    animation-delay: 1s;
}

.light-3 {
    width: 280px;
    height: 280px;
    left: 35%;
    bottom: 15%;
    background: rgba(58, 134, 255, 0.5);
    animation: pulse3 7s ease-in-out infinite;
    animation-delay: 2.5s;
}

.light-4 {
    width: 200px;
    height: 200px;
    left: 5%;
    bottom: 25%;
    background: rgba(255, 190, 11, 0.4);
    animation: pulse4 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.light-5 {
    width: 250px;
    height: 250px;
    right: 5%;
    bottom: 20%;
    background: rgba(0, 245, 212, 0.4);
    animation: pulse5 9s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes pulse1 {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulse2 {
    0%, 100% { opacity: 0.2; transform: scale(0.9); }
    40% { opacity: 1; transform: scale(1.2); }
    70% { opacity: 0.3; transform: scale(0.95); }
}

@keyframes pulse3 {
    0%, 100% { opacity: 0.15; transform: scale(0.85); }
    30% { opacity: 0.8; transform: scale(1.1); }
    60% { opacity: 1; transform: scale(1.25); }
}

@keyframes pulse4 {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes pulse5 {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    25% { opacity: 0.7; transform: scale(1.1); }
    75% { opacity: 1; transform: scale(1.2); }
}

/* SVG panels */
.desktop-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

.comic-panels .panel image {
    transition: transform 0.4s ease;
    transform-origin: center center;
    transform-box: fill-box;
}

.comic-panels .panel:hover image {
    transform: scale(1.08);
}

/* Mobile SVG - hidden on desktop */
.mobile-svg {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .title-section {
        margin-bottom: 40px;
    }

    /* Hide desktop SVG, show mobile SVG */
    .desktop-svg {
        display: none;
    }

    .mobile-svg {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    .mobile-svg .panel image {
        transition: transform 0.4s ease;
        transform-origin: center center;
        transform-box: fill-box;
    }

    .mobile-svg .panel:active image {
        transform: scale(1.08);
    }

    /* Smaller cloud lights on mobile */
    .light {
        filter: blur(40px);
    }

    .light-1, .light-2, .light-3, .light-4, .light-5 {
        width: 150px;
        height: 150px;
    }

    .cta-text {
        margin-top: 35px;
    }
}
