:root {
    --primary-purple: #663399;
    --cosmic-blue: #4a90e2;
    --earth-green: #2d5a27;
    --sunset-orange: #ff6b35;
    --moon-silver: #c0c0c0;
    --star-gold: #ffd700;
    --space-dark: #1a1a2e;
    --nebula-purple: #16213e;
    --cosmic-pink: #ff1493;
    --festival-green: #7cfc00;
    --peace-purple: #9370db;
    --hippie-orange: #ff8c00;
    --robot-cyan: #00ffff;
    --space-silver: #e0e0e0;
    --text-light: #ffffff;
    --text-dark: #333333;
    --overlay-dark: rgba(26, 26, 46, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Parallax background sections */
.parallax-bg {
    position: relative;
}

.parallax-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/img/bg/mainbg.jpg') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    z-index: -2;
}

/* Enhanced animated sparkles background */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--star-gold);
    border-radius: 50%;
    animation: sparkle-float 15s infinite linear;
    opacity: 0;
}

.sparkle:nth-child(2n) {
    background: var(--cosmic-pink);
    animation-duration: 18s;
    animation-delay: 2s;
}

.sparkle:nth-child(3n) {
    background: var(--festival-green);
    animation-duration: 12s;
    animation-delay: 4s;
}

.sparkle:nth-child(4n) {
    background: var(--peace-purple);
    animation-duration: 20s;
    animation-delay: 6s;
}

.sparkle:nth-child(5n) {
    background: var(--robot-cyan);
    animation-duration: 14s;
    animation-delay: 8s;
}

@keyframes sparkle-float {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(95vh) rotate(18deg) scale(1);
    }
    95% {
        opacity: 1;
        transform: translateY(5vh) rotate(342deg) scale(1);
    }
    100% {
        transform: translateY(-5vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}


/* Blue cosmic overlay for better background visibility */
.cosmic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 51, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 20, 147, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(124, 252, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: cosmic-pulse 12s ease-in-out infinite;
}

@keyframes cosmic-pulse {
    0%, 100% { opacity: 1; }
    33% { opacity: 0.8; }
    66% { opacity: 0.9; }
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 212, 0, 0.3);
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    border-bottom-color: var(--star-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.moon-widget {
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.moon-widget:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.moon-widget img {
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 212, 0, 0.5));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.8));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--star-gold);
    text-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--star-gold), var(--cosmic-pink));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Desktop-only hover styles - only apply when device can hover */
@media (hover: hover) {
    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-link:hover {
        color: var(--star-gold);
        background: rgba(255, 212, 0, 0.1);
        text-shadow: 0 0 8px rgba(255, 212, 0, 0.4);
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.slide-content {
    opacity: 0;
    animation: slide-fade-in 1s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    transition: opacity 0.8s ease-in-out;
    display: none; /* Hide by default */
}

.slide-content.active {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block; /* Show only the active slide */
}

@keyframes slide-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
    animation: hero-glow 3s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.slide-subtitle {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--star-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

.slide-emoji-line {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-logo {
    margin: 1.5rem 0;
    text-align: center;
}

.festival-logo {
    width: clamp(120px, 15vw, 200px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: logo-float 4s ease-in-out infinite alternate;
}

@keyframes logo-float {
    0% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

@keyframes glow-pulse {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 212, 0, 0.3); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 212, 0, 0.6); }
}

.slide-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(102, 51, 153, 0.4);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 100%;
    height: calc(100% + 2px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    border-radius: inherit;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.6);
    background: linear-gradient(45deg, var(--cosmic-blue), var(--cosmic-pink));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--star-gold);
    color: var(--star-gold);
    box-shadow: 0 5px 20px rgba(255, 212, 0, 0.3);
}

.btn-outline:hover {
    background: var(--star-gold);
    color: var(--space-dark);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.5);
}

/* Videos Section */
/* ===== FESTIVAL MEMORIES SECTION - COSMIC HIPPIE VIBES ===== */
.memories-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
}

/* Cosmic Stars Animation */
.cosmic-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.6;
    animation: starTwinkle 4s ease-in-out infinite, starMove 20s linear infinite;
}

.star-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0.6;
    animation: starTwinkle 4s ease-in-out infinite;
}

.star-dot-1 {
    top: 12%;
    left: 8%;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit1 280s linear infinite;
    animation-delay: 0s, 0s;
}

.star-dot-2 {
    top: 22%;
    right: 15%;
    background: #fffacd;
    box-shadow: 0 0 8px rgba(255, 250, 205, 0.5);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit2 320s linear infinite;
    animation-delay: -1.2s, -40s;
}

.star-dot-3 {
    bottom: 35%;
    left: 72%;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit3 250s linear infinite;
    animation-delay: -2.8s, -80s;
}

.star-dot-4 {
    top: 58%;
    left: 12%;
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit4 300s linear infinite;
    animation-delay: -0.8s, -120s;
}

.star-dot-5 {
    top: 35%;
    left: 85%;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.35);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit5 270s linear infinite;
    animation-delay: -3.5s, -160s;
}

.star-dot-6 {
    bottom: 15%;
    left: 25%;
    background: #fffacd;
    box-shadow: 0 0 7px rgba(255, 250, 205, 0.4);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit6 330s linear infinite;
    animation-delay: -1.8s, -200s;
}

.star-dot-7 {
    top: 8%;
    left: 45%;
    background: #ffd700;
    box-shadow: 0 0 9px rgba(255, 215, 0, 0.5);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit7 260s linear infinite;
    animation-delay: -2.5s, -240s;
}

.star-dot-8 {
    bottom: 60%;
    right: 8%;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit8 290s linear infinite;
    animation-delay: -0.4s, -280s;
}

.star-dot-9 {
    top: 45%;
    left: 55%;
    background: #fffacd;
    box-shadow: 0 0 5px rgba(255, 250, 205, 0.3);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit9 310s linear infinite;
    animation-delay: -3.2s, -100s;
}

.star-dot-10 {
    bottom: 25%;
    right: 35%;
    background: #ffffff;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.45);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit10 275s linear infinite;
    animation-delay: -1.7s, -180s;
}

.star-dot-11 {
    top: 18%;
    left: 78%;
    background: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit11 340s linear infinite;
    animation-delay: -2.9s, -220s;
}

.star-dot-12 {
    bottom: 45%;
    left: 40%;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.35);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit12 295s linear infinite;
    animation-delay: -0.6s, -150s;
}

.star-dot-13 {
    top: 32%;
    right: 45%;
    background: #fffacd;
    box-shadow: 0 0 6px rgba(255, 250, 205, 0.4);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit13 265s linear infinite;
    animation-delay: -3.8s, -320s;
}

.star-dot-14 {
    bottom: 8%;
    left: 60%;
    background: #ffd700;
    box-shadow: 0 0 9px rgba(255, 215, 0, 0.55);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit14 285s linear infinite;
    animation-delay: -1.1s, -80s;
}

.star-dot-15 {
    top: 65%;
    right: 25%;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit15 315s linear infinite;
    animation-delay: -2.4s, -260s;
}

.star-dot-16 {
    top: 50%;
    left: 20%;
    background: #fffacd;
    box-shadow: 0 0 7px rgba(255, 250, 205, 0.45);
    animation: starTwinkle 4s ease-in-out infinite, starOrbit16 305s linear infinite;
    animation-delay: -0.9s, -350s;
}

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

@keyframes starOrbit1 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(120px) translateY(-60px); }
    50% { transform: translateX(80px) translateY(-140px); }
    75% { transform: translateX(-40px) translateY(-80px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit2 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-90px) translateY(-100px); }
    50% { transform: translateX(-160px) translateY(-40px); }
    75% { transform: translateX(-60px) translateY(80px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit3 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-110px) translateY(90px); }
    50% { transform: translateX(-200px) translateY(40px); }
    75% { transform: translateX(-80px) translateY(-120px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit4 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(150px) translateY(110px); }
    50% { transform: translateX(60px) translateY(180px); }
    75% { transform: translateX(-70px) translateY(60px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit5 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-140px) translateY(-90px); }
    50% { transform: translateX(-250px) translateY(-160px); }
    75% { transform: translateX(-100px) translateY(-40px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit6 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(180px) translateY(-140px); }
    50% { transform: translateX(120px) translateY(-220px); }
    75% { transform: translateX(20px) translateY(-100px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit7 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-80px) translateY(130px); }
    50% { transform: translateX(-170px) translateY(60px); }
    75% { transform: translateX(-50px) translateY(-90px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit8 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(100px) translateY(-170px); }
    50% { transform: translateX(160px) translateY(-100px); }
    75% { transform: translateX(40px) translateY(50px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit9 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-95px) translateY(-130px); }
    50% { transform: translateX(-180px) translateY(-80px); }
    75% { transform: translateX(-70px) translateY(100px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit10 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(130px) translateY(140px); }
    50% { transform: translateX(220px) translateY(70px); }
    75% { transform: translateX(90px) translateY(-110px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit11 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-170px) translateY(-110px); }
    50% { transform: translateX(-280px) translateY(-180px); }
    75% { transform: translateX(-120px) translateY(-60px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit12 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(110px) translateY(-150px); }
    50% { transform: translateX(190px) translateY(-90px); }
    75% { transform: translateX(60px) translateY(80px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit13 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-120px) translateY(120px); }
    50% { transform: translateX(-210px) translateY(50px); }
    75% { transform: translateX(-80px) translateY(-130px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit14 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(160px) translateY(-120px); }
    50% { transform: translateX(240px) translateY(-200px); }
    75% { transform: translateX(110px) translateY(-80px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit15 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-140px) translateY(-160px); }
    50% { transform: translateX(-260px) translateY(-120px); }
    75% { transform: translateX(-100px) translateY(90px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starOrbit16 {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(200px) translateY(150px); }
    50% { transform: translateX(140px) translateY(220px); }
    75% { transform: translateX(50px) translateY(100px); }
    100% { transform: translateX(0px) translateY(0px); }
}

@keyframes starMove {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(0px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -20px) rotate(270deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(360deg);
    }
}


.rainbow-text {
    background: linear-gradient(45deg, #FF6B9D, #FFD700, #00CED1, #FF69B4, #9370DB, #FF4500);
    background-size: 600% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 3s ease infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes rainbowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.memories-intro {
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Amatic SC', cursive;
    color: #fff;
    margin: 1rem 0 3rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 107, 157, 0.5); }
}

.memories-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.floating-memories {
    position: relative;
    height: 800px;
    margin-bottom: 3rem;
    width: 100%;
}

.memory-float {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.6s ease;
    cursor: pointer;
}

.memory-float:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Desktop Layout - 7 photos randomly spread */
.memory-box-1 {
    top: 15%;
    left: -5%;
    transform: rotate(-8deg);
    animation: float1 180s ease-in-out infinite;
}

.memory-box-2 {
    top: 55%;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    animation: float2 220s ease-in-out infinite;
}

.memory-box-3 {
    top: 5%;
    right: -5%;
    transform: rotate(-6deg);
    animation: float3 160s ease-in-out infinite;
}

.memory-box-4 {
    top: 35%;
    left: -2%;
    transform: rotate(4deg);
    animation: float4 200s ease-in-out infinite;
}

.memory-box-5 {
    top: 75%;
    right: -3%;
    transform: rotate(-7deg);
    animation: float5 190s ease-in-out infinite;
}

.memory-box-6 {
    top: 8%;
    left: 65%;
    transform: rotate(3deg);
    animation: float6 170s ease-in-out infinite;
}

.memory-box-7 {
    top: 45%;
    right: -8%;
    transform: rotate(-4deg);
    animation: float7 210s ease-in-out infinite;
}

@keyframes float1 {
    0% {
        transform: rotate(-8deg) translateY(0px) translateX(0px) scale(0.92);
        box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
        z-index: 3;
    }
    15% {
        transform: rotate(-6deg) translateY(-120px) translateX(180px) scale(0.96);
        box-shadow: 0 17px 33px rgba(255, 107, 157, 0.33);
        z-index: 4;
    }
    30% {
        transform: rotate(-4deg) translateY(-200px) translateX(320px) scale(1.35);
        box-shadow: 0 18px 35px rgba(255, 107, 157, 0.35);
        z-index: 7;
    }
    45% {
        transform: rotate(-9deg) translateY(-150px) translateX(450px) scale(1.45);
        box-shadow: 0 19px 37px rgba(255, 107, 157, 0.37);
        z-index: 8;
    }
    60% {
        transform: rotate(-10deg) translateY(50px) translateX(380px) scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4);
        z-index: 6;
    }
    75% {
        transform: rotate(-7deg) translateY(180px) translateX(250px) scale(0.98);
        box-shadow: 0 21px 41px rgba(255, 107, 157, 0.39);
        z-index: 4;
    }
    90% {
        transform: rotate(-5deg) translateY(80px) translateX(100px) scale(0.94);
        box-shadow: 0 19px 37px rgba(255, 107, 157, 0.36);
        z-index: 3;
    }
    100% {
        transform: rotate(-8deg) translateY(0px) translateX(0px) scale(0.92);
        box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
        z-index: 3;
    }
}

@keyframes float2 {
    0% {
        transform: translateX(-50%) rotate(5deg) translateY(0px) scale(1.03);
        box-shadow: 0 15px 30px rgba(199, 56, 189, 0.3);
        z-index: 5;
    }
    12% {
        transform: translateX(20%) rotate(4deg) translateY(-140px) scale(0.97);
        box-shadow: 0 16px 31px rgba(199, 56, 189, 0.31);
        z-index: 4;
    }
    25% {
        transform: translateX(80%) rotate(2deg) translateY(-220px) scale(0.89);
        box-shadow: 0 17px 33px rgba(199, 56, 189, 0.33);
        z-index: 2;
    }
    40% {
        transform: translateX(120%) rotate(6deg) translateY(-180px) scale(1.55);
        box-shadow: 0 19px 37px rgba(199, 56, 189, 0.37);
        z-index: 9;
    }
    55% {
        transform: translateX(-120%) rotate(8deg) translateY(-250px) scale(1.38);
        box-shadow: 0 21px 41px rgba(199, 56, 189, 0.39);
        z-index: 7;
    }
    70% {
        transform: translateX(-180%) rotate(7deg) translateY(-160px) scale(0.95);
        box-shadow: 0 22px 44px rgba(199, 56, 189, 0.4);
        z-index: 3;
    }
    85% {
        transform: translateX(-100%) rotate(3deg) translateY(120px) scale(1.01);
        box-shadow: 0 20px 38px rgba(199, 56, 189, 0.38);
        z-index: 5;
    }
    100% {
        transform: translateX(-50%) rotate(5deg) translateY(0px) scale(1.03);
        box-shadow: 0 15px 30px rgba(199, 56, 189, 0.3);
        z-index: 5;
    }
}

@keyframes float3 {
    0% {
        transform: rotate(-6deg) translateY(0px) translateX(0px) scale(0.88);
        box-shadow: 0 15px 30px rgba(65, 88, 208, 0.3);
        z-index: 2;
    }
    14% {
        transform: rotate(-5deg) translateY(-160px) translateX(-200px) scale(0.93);
        box-shadow: 0 16px 31px rgba(65, 88, 208, 0.31);
        z-index: 3;
    }
    28% {
        transform: rotate(-3deg) translateY(-240px) translateX(-350px) scale(1.28);
        box-shadow: 0 18px 35px rgba(65, 88, 208, 0.35);
        z-index: 7;
    }
    42% {
        transform: rotate(-7deg) translateY(-280px) translateX(-480px) scale(1.65);
        box-shadow: 0 20px 39px rgba(65, 88, 208, 0.37);
        z-index: 9;
    }
    56% {
        transform: rotate(-9deg) translateY(-320px) translateX(-520px) scale(1.75);
        box-shadow: 0 25px 50px rgba(65, 88, 208, 0.4);
        z-index: 10;
    }
    70% {
        transform: rotate(-4deg) translateY(-180px) translateX(-400px) scale(1.42);
        box-shadow: 0 23px 45px rgba(65, 88, 208, 0.39);
        z-index: 8;
    }
    84% {
        transform: rotate(-6deg) translateY(150px) translateX(-180px) scale(0.96);
        box-shadow: 0 21px 41px rgba(65, 88, 208, 0.38);
        z-index: 4;
    }
    100% {
        transform: rotate(-6deg) translateY(0px) translateX(0px) scale(0.88);
        box-shadow: 0 15px 30px rgba(65, 88, 208, 0.3);
        z-index: 2;
    }
}

@keyframes float4 {
    0% {
        transform: rotate(4deg) translateY(0px) translateX(0px) scale(1.06);
        box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
        z-index: 6;
    }
    16% {
        transform: rotate(5deg) translateY(140px) translateX(200px) scale(0.91);
        box-shadow: 0 16px 32px rgba(255, 165, 0, 0.32);
        z-index: 2;
    }
    32% {
        transform: rotate(7deg) translateY(220px) translateX(350px) scale(0.85);
        box-shadow: 0 18px 36px rgba(255, 165, 0, 0.34);
        z-index: 1;
    }
    48% {
        transform: rotate(6deg) translateY(280px) translateX(480px) scale(1.48);
        box-shadow: 0 19px 38px rgba(255, 165, 0, 0.36);
        z-index: 8;
    }
    64% {
        transform: rotate(3deg) translateY(120px) translateX(550px) scale(1.62);
        box-shadow: 0 18px 37px rgba(255, 165, 0, 0.35);
        z-index: 9;
    }
    80% {
        transform: rotate(1deg) translateY(-180px) translateX(420px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4);
        z-index: 5;
    }
    92% {
        transform: rotate(3deg) translateY(-80px) translateX(180px) scale(0.99);
        box-shadow: 0 17px 34px rgba(255, 165, 0, 0.33);
        z-index: 4;
    }
    100% {
        transform: rotate(4deg) translateY(0px) translateX(0px) scale(1.06);
        box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
        z-index: 6;
    }
}

@keyframes float5 {
    0% {
        transform: rotate(-7deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    }
    25% {
        transform: rotate(-9deg) translateY(110px) translateX(-120px);
        box-shadow: 0 20px 40px rgba(0, 255, 255, 0.37);
    }
    65% {
        transform: rotate(-5deg) translateY(-85px) translateX(-200px);
        box-shadow: 0 25px 50px rgba(0, 255, 255, 0.4);
    }
    90% {
        transform: rotate(-8deg) translateY(60px) translateX(-90px);
        box-shadow: 0 18px 36px rgba(0, 255, 255, 0.35);
    }
    100% {
        transform: rotate(-7deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    }
}

@keyframes float6 {
    0% {
        transform: rotate(3deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
    }
    40% {
        transform: rotate(5deg) translateY(-95px) translateX(-110px);
        box-shadow: 0 18px 36px rgba(255, 20, 147, 0.36);
    }
    75% {
        transform: rotate(1deg) translateY(70px) translateX(-60px);
        box-shadow: 0 20px 40px rgba(255, 20, 147, 0.4);
    }
    100% {
        transform: rotate(3deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
    }
}

@keyframes float7 {
    0% {
        transform: rotate(-4deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(50, 205, 50, 0.3);
    }
    20% {
        transform: rotate(-6deg) translateY(75px) translateX(130px);
        box-shadow: 0 17px 34px rgba(50, 205, 50, 0.34);
    }
    55% {
        transform: rotate(-1deg) translateY(-110px) translateX(180px);
        box-shadow: 0 25px 50px rgba(50, 205, 50, 0.4);
    }
    80% {
        transform: rotate(-5deg) translateY(-45px) translateX(100px);
        box-shadow: 0 22px 44px rgba(50, 205, 50, 0.38);
    }
    100% {
        transform: rotate(-4deg) translateY(0px) translateX(0px);
        box-shadow: 0 15px 30px rgba(50, 205, 50, 0.3);
    }
}

@keyframes float8 {
    0%, 100% {
        transform: rotate(2deg) translateY(0px);
        box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
    }
    50% {
        transform: rotate(2deg) translateY(-6px);
        box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
    }
}

@keyframes float9 {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: rotate(-2deg) translateY(-10px);
        box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    }
}

.memory-float:hover {
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3) !important;
}

.memory-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.memory-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 2s ease-out;
}

.memory-images img.active {
    opacity: 1;
}

.memory-images img.zoom-in {
    transform: scale(1.15);
}

.memory-images img.zoom-out {
    transform: scale(1);
}

.memory-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        rgba(255, 107, 157, 0.8),
        rgba(199, 56, 189, 0.8),
        rgba(65, 88, 208, 0.8),
        rgba(183, 33, 255, 0.8));
    background-size: 400% 400%;
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    animation: psychedelicGradient 3s ease infinite;
    transition: opacity 0.6s ease;
}

.memory-float:hover .memory-glow {
    opacity: 1;
}

/* Space Shuttle Launch Animation */
.shuttle-launch {
    position: absolute;
    font-size: 2rem;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    animation: shuttleLaunch 5s ease-in forwards;
}

@keyframes shuttleLaunch {
    0% {
        opacity: 1;
        transform: translateY(0px) scale(0.5) rotate(-45deg);
    }
    30% {
        opacity: 1;
        transform: translateY(-60px) scale(0.7) rotate(-45deg);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-140px) scale(0.9) rotate(-45deg);
    }
    70% {
        opacity: 0.7;
        transform: translateY(-280px) scale(1.1) rotate(-45deg);
    }
    85% {
        opacity: 0.4;
        transform: translateY(-500px) scale(1.3) rotate(-45deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-800px) scale(1.5) rotate(-45deg);
    }
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.4);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #FF6B9D, #C738BD, #4158D0);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.video-card:hover .video-glow {
    opacity: 0.7;
    animation: pulseGlow 2s ease infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.02); opacity: 1; }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-label {
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.8), rgba(199, 56, 189, 0.8));
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.memory-quote {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.quote-mark {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: serif;
    line-height: 0.8;
}

.quote-text {
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .floating-memories {
        height: 700px;
        padding: 0 1.5rem;
    }

    .memory-float {
        width: 240px;
        height: 160px;
    }

    /* Tablet - Adjusted 3x3 Grid */
    .memory-box-1 { top: 60px; left: 6%; transform: rotate(-2deg); }
    .memory-box-2 { top: 90px; left: 40%; transform: rotate(1deg); }
    .memory-box-3 { top: 70px; right: 6%; transform: rotate(-3deg); }
    .memory-box-4 { top: 280px; left: 4%; transform: rotate(3deg); }
    .memory-box-5 { top: 300px; left: 50%; transform: translateX(-50%) rotate(-1deg); }
    .memory-box-6 { top: 250px; right: 4%; transform: rotate(2deg); }
    .memory-box-7 { bottom: 140px; left: 10%; transform: rotate(-2deg); }
    .memory-box-8 { bottom: 110px; left: 44%; transform: rotate(1deg); }
    .memory-box-9 { bottom: 130px; right: 10%; transform: rotate(-1deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .memories-section {
        padding: 2rem 0;
    }

    .floating-memories {
        height: 600px;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .memory-float {
        width: 200px;
        height: 140px;
    }

    /* Mobile - 2x3 Grid Layout + 3 Overlaid */
    .memory-box-1 { top: 40px; left: 8%; transform: rotate(-2deg); }
    .memory-box-2 { top: 60px; right: 8%; transform: rotate(2deg); }
    .memory-box-3 { top: 200px; left: 5%; transform: rotate(3deg); }
    .memory-box-4 { top: 180px; right: 5%; transform: rotate(-3deg); }
    .memory-box-5 { top: 320px; left: 50%; transform: translateX(-50%) rotate(1deg); }
    .memory-box-6 { top: 120px; left: 50%; transform: translateX(-50%) rotate(-1deg); }
    .memory-box-7 { bottom: 80px; left: 12%; transform: rotate(2deg); }
    .memory-box-8 { bottom: 60px; right: 12%; transform: rotate(-2deg); }
    .memory-box-9 { bottom: 20px; left: 50%; transform: translateX(-50%) rotate(1deg); }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .memories-intro {
        font-size: 1.1rem;
    }

    .peace-symbol {
        font-size: 1.5rem;
    }

    .memory-quote {
        margin: 1rem;
        padding: 1.5rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }
}

/* Festival Info Cards with mainbg.jpg parallax and PNG thumbnails */
.festival-info {
    padding: 5rem 0;
    background:
        linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
        url('../../assets/img/bg/countdown-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 51, 153, 0.3);
    position: relative;
    overflow: hidden;
}


.info-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(102, 51, 153, 0.4);
    border-color: var(--primary-purple);
}

.info-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(102, 51, 153, 0.3));
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card:hover .info-icon img {
    filter: drop-shadow(0 8px 25px rgba(255, 20, 147, 0.5));
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.info-text {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    z-index: 2;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Equibot activation button */
.equibot-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(102, 51, 153, 0.4);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
    margin-top: 0.5rem;
}

.equibot-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 100%;
    height: calc(100% + 2px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    border-radius: inherit;
}

.equibot-btn:hover::before {
    left: 100%;
}

.equibot-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.6);
    background: linear-gradient(45deg, var(--cosmic-blue), var(--cosmic-pink));
}

.equibot-btn .btn-icon {
    margin-right: 0.5rem;
}

/* Equibot Location Card Styling */
.equibot-location-card {
    text-align: center;
    position: relative;
}

.equibot-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.equibot-location-card .cosmic-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.status-text {
    color: var(--star-gold);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.warning-text {
    color: var(--cosmic-pink);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

.info-grid-1col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.4), rgba(124, 252, 0, 0.3));
    position: relative;
    overflow: hidden;
}

.about-section .container {
    max-width: 100%;
    padding: 0 2rem;
}

/* Amazing About Content */
.about-hero {
    text-align: center;
    margin-bottom: 5rem;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.9), rgba(147, 51, 234, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px rgba(102, 51, 153, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
}

.about-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-family: 'Amatic SC', cursive;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--star-gold);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(102, 51, 153, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 51, 153, 0.4);
    border-color: var(--primary-purple);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--cosmic-pink);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}


.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
    border-color: var(--star-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--star-gold), var(--cosmic-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
}

/* New Artists Section within About */
.new-artists-section {
    margin: 4rem 0;
    text-align: center;
}

.new-artists-section .section-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
}

.new-artists-section .artists-grid {
    max-width: 100%;
    padding: 0 2rem;
    margin-top: 2rem;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem 5rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Amatic SC', cursive;
}

.about-cta p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(102, 51, 153, 0.4);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 100%;
    height: calc(100% + 2px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    border-radius: inherit;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 51, 153, 0.6);
    background: linear-gradient(45deg, var(--cosmic-blue), var(--cosmic-pink));
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--star-gold);
    color: var(--star-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-btn.secondary:hover {
    background: var(--star-gold);
    color: var(--space-dark);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        padding: 2rem;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    font-family: 'Fredoka One', cursive;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue), var(--cosmic-pink));
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Countdown Section */
.countdown-section {
    background:
        linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
        url('../../assets/img/bg/countdown-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.countdown-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Amatic SC', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    min-width: 120px;
    border: 2px solid rgba(255, 212, 0, 0.4);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
    border-color: var(--star-gold);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--star-gold);
    font-family: 'Amatic SC', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Stage Lighting Section */
.stage-lighting-section {
    position: relative;
    min-height: 400px;
    background:
        linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
        url('../../assets/img/bg/countdown-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 4rem 0;
}

.lighting-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Moving Head Lights */
.moving-head {
    position: absolute;
    width: 100px;
    height: 150px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 20px 20px 50% 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: moveLight 8s ease-in-out infinite;
}

.moving-head::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 0, 0.7) 40%, rgba(255, 0, 255, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    animation: lightBeam 3s ease-in-out infinite;
    filter: blur(2px);
}

.light-1 {
    top: -100px;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.light-2 {
    top: -120px;
    left: 25%;
    animation-delay: -2s;
    transform: rotate(-10deg);
}
.light-3 {
    top: -110px;
    left: 50%;
    animation-delay: -4s;
    transform: rotate(20deg);
}
.light-4 {
    top: -100px;
    left: 75%;
    animation-delay: -6s;
    transform: rotate(-15deg);
}
.light-5 {
    top: -130px;
    left: 90%;
    animation-delay: -1s;
    transform: rotate(25deg);
}
.light-6 {
    top: -105px;
    left: 5%;
    animation-delay: -3s;
    transform: rotate(-20deg);
}

/* Laser Beams */
.laser-beam {
    position: absolute;
    width: 3px;
    height: 100%;
    animation: laserSweep 8s linear infinite;
    filter: drop-shadow(0 0 15px currentColor) drop-shadow(0 0 30px currentColor);
    border-radius: 50px;
}

.laser-1 {
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(180deg, transparent 0%, #ff0080 20%, #ff0080 80%, transparent 100%);
}
.laser-2 {
    left: 20%;
    animation-delay: -1s;
    background: linear-gradient(180deg, transparent 0%, #00ff80 20%, #00ff80 80%, transparent 100%);
}
.laser-3 {
    left: 30%;
    animation-delay: -2s;
    background: linear-gradient(180deg, transparent 0%, #0080ff 20%, #0080ff 80%, transparent 100%);
}
.laser-4 {
    left: 40%;
    animation-delay: -3s;
    background: linear-gradient(180deg, transparent 0%, #ff8000 20%, #ff8000 80%, transparent 100%);
}
.laser-5 {
    left: 60%;
    animation-delay: -4s;
    background: linear-gradient(180deg, transparent 0%, #ff00ff 20%, #ff00ff 80%, transparent 100%);
}
.laser-6 {
    left: 70%;
    animation-delay: -5s;
    background: linear-gradient(180deg, transparent 0%, #00ffff 20%, #00ffff 80%, transparent 100%);
}
.laser-7 {
    left: 80%;
    animation-delay: -6s;
    background: linear-gradient(180deg, transparent 0%, #ffff00 20%, #ffff00 80%, transparent 100%);
}
.laser-8 {
    left: 90%;
    animation-delay: -7s;
    background: linear-gradient(180deg, transparent 0%, #ff4080 20%, #ff4080 80%, transparent 100%);
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 8px #fff);
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    border-radius: 50%;
    animation: sparkleGlow 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}
.sparkle-2 {
    top: 30%;
    left: 25%;
    animation-delay: -0.5s;
}
.sparkle-3 {
    top: 15%;
    left: 45%;
    animation-delay: -1s;
}
.sparkle-4 {
    top: 40%;
    left: 65%;
    animation-delay: -1.5s;
}
.sparkle-5 {
    top: 25%;
    left: 85%;
    animation-delay: -2s;
}
.sparkle-6 {
    top: 60%;
    left: 20%;
    animation-delay: -2.5s;
}
.sparkle-7 {
    top: 70%;
    left: 40%;
    animation-delay: -3s;
}
.sparkle-8 {
    top: 55%;
    left: 60%;
    animation-delay: -3.5s;
}
.sparkle-9 {
    top: 75%;
    left: 80%;
    animation-delay: -4s;
}
.sparkle-10 {
    top: 35%;
    left: 5%;
    animation-delay: -4.5s;
}

/* Strobe Lights */
.strobe-light {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    animation: strobe 4s linear infinite;
    filter: blur(5px);
}

.strobe-1 {
    top: 50px;
    left: 15%;
    animation-delay: 0s;
}
.strobe-2 {
    top: 80px;
    right: 20%;
    animation-delay: -1.3s;
}
.strobe-3 {
    top: 40px;
    left: 50%;
    animation-delay: -2.6s;
}

/* Fog Effect */
.fog-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    animation: fogFlow 10s ease-in-out infinite;
    filter: blur(3px);
}

/* Stage Content */
.stage-content-full-width {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0;
}

.stage-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 1rem;
    background: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    width: 100%;
}

.stage-content .about-features {
    max-width: 100%;
    padding: 0 2rem;
}

.stage-content .about-stats {
    max-width: 100%;
    padding: 0 2rem;
}

.stage-content .about-hero,
.stage-content .about-cta {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Information Page Styles */

/* Hero Section Small */
.hero-section-small {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--space-dark), var(--nebula-purple));
    overflow: hidden;
}

.hero-section-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/img/bg/slider-4.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    z-index: 2;
}

.hero-content-small {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.section-title-large {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    font-family: 'Amatic SC', cursive;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--star-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

/* Info Navigation Section */
.info-navigation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--space-dark), var(--nebula-purple));
    position: relative;
}

.info-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-nav-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.info-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-nav-card:hover::before {
    left: 100%;
}

.info-nav-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--star-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.info-nav-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-nav-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--star-gold);
}

.info-nav-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    position: relative;
}

.info-section:nth-child(even) {
    background: linear-gradient(135deg, var(--space-dark), var(--nebula-purple));
}

.info-section:nth-child(odd) {
    background: linear-gradient(135deg, var(--nebula-purple), var(--space-dark));
}

/* Info Grid Layouts */
.info-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.info-card-large {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--cosmic-blue);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--star-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Map Container */
.map-container {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.address-info h4 {
    color: var(--cosmic-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.address-info p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Transport and Directions */
.transport-section h4,
.directions-section h4 {
    color: var(--cosmic-blue);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.taxi-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.taxi-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--star-gold);
}

.taxi-item strong {
    color: var(--star-gold);
}

.transport-info p {
    margin-bottom: 0.5rem;
    color: white;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.direction-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.direction-card h4 {
    color: var(--star-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.direction-card ul {
    color: white;
    line-height: 1.6;
}

.direction-card li {
    margin-bottom: 0.5rem;
}

.important-notice {
    background: linear-gradient(135deg, var(--sunset-orange), #ff4500);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Guidance Grid */
.guidance-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.cosmic-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guidance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.guidance-card:hover {
    transform: translateY(-5px);
    border-color: var(--festival-green);
    box-shadow: 0 15px 30px rgba(124, 252, 0, 0.2);
}

.guidance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.guidance-card h3 {
    color: var(--star-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guidance-card p {
    color: white;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Campsites Grid */
.camping-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.campsites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.campsite-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.campsite-card:hover {
    transform: translateY(-5px);
    border-color: var(--earth-green);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.3);
    color: white;
    text-decoration: none;
}

.campsite-card h3 {
    color: var(--star-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.campsite-card p {
    opacity: 0.8;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cosmic-pink);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    color: var(--star-gold);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    color: var(--cosmic-blue);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: white;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.contact-info p {
    color: white;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--cosmic-blue);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--star-gold);
}

/* Ticket Section Styles */
.ticket-section {
    margin-bottom: 3rem;
}

.gate-times {
    text-align: center;
}

.gate-times p {
    color: var(--sunset-orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.time-card h4 {
    color: var(--star-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.time-card p {
    color: white;
    margin: 0;
    font-weight: 600;
}

.vehicle-info {
    margin-top: 2rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-card h4 {
    color: var(--star-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price-card p {
    color: white;
    margin-bottom: 0.5rem;
}

.vehicle-rules {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--sunset-orange);
}

.vehicle-rules h4 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.vehicle-rules ul {
    color: white;
    line-height: 1.8;
}

.vehicle-rules li {
    margin-bottom: 0.5rem;
}

.children-info {
    background: linear-gradient(135deg, rgba(124, 252, 0, 0.1), rgba(124, 252, 0, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(124, 252, 0, 0.3);
    text-align: center;
}

.children-info p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.children-info p:last-child {
    margin-bottom: 0;
}

.terms-highlights {
    margin-top: 3rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.term-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.term-card h4 {
    color: var(--cosmic-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.term-card p {
    color: white;
    line-height: 1.6;
    margin: 0;
}

.services-section {
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--peace-purple);
}

.service-card h4 {
    color: var(--star-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--cosmic-blue);
    text-decoration: none;
}

.service-card a:hover {
    color: var(--star-gold);
}

/* Policy Content */
.policy-content {
    margin-bottom: 3rem;
}

.policy-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--peace-purple);
}

.policy-text p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-text p:last-child {
    margin-bottom: 0;
}

.safety-reminders {
    margin-top: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.safety-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: var(--sunset-orange);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.safety-card h4 {
    color: var(--star-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.safety-card p {
    color: white;
    line-height: 1.6;
    margin: 0;
}

.final-notice {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--peace-purple));
    border-radius: 15px;
    text-align: center;
}

.final-notice p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--peace-purple));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.btn-cosmic {
    background: linear-gradient(135deg, var(--cosmic-blue), var(--peace-purple));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-cosmic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-grid-2col {
        grid-template-columns: 1fr;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }

    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .info-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guidance-grid {
        grid-template-columns: 1fr;
    }

    .campsites-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-small {
        padding: 1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .info-nav-grid {
        grid-template-columns: 1fr;
    }

    .times-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Stage Countdown */
.stage-countdown {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.stage-countdown .countdown-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-family: 'Amatic SC', cursive;
}

.stage-countdown .countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stage-countdown .countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
}

.stage-countdown .countdown-item:hover {
    transform: scale(1.05);
    border-color: var(--star-gold);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.3);
}

.stage-countdown .countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--star-gold);
    font-family: 'Amatic SC', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stage-countdown .countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
}

/* Make stage lighting text white */
.stage-content h2,
.stage-content h3,
.stage-content h4,
.stage-content p,
.stage-content .about-tagline,
.stage-content .about-description,
.stage-content .stat-label {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Override white text for info and feature cards */
.stage-content .info-card .info-title,
.stage-content .feature-card h4,
.stage-content .feature-card .feature-title,
.stage-name,
.stages-section .stage-name {
    color: var(--primary-purple) !important;
    text-shadow: none !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Amatic SC', cursive !important;
}

.stage-content .info-card .info-text,
.stage-content .feature-card p,
.stage-content .feature-card .feature-description,
.stage-description,
.stages-section .stage-description {
    color: var(--text-dark) !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
}

/* Remove all animations from cards */
.info-card::before,
.feature-card::before,
.stage-card::before {
    display: none !important;
}

.info-card,
.feature-card,
.stage-card {
    animation: none !important;
}

.feature-icon {
    animation: none !important;
}

.stage-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===== EQUIBOT LOCATION PAGE ===== */

.equibot-system {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 2rem;
}

.equibot-interface {
    background: rgba(0, 20, 40, 0.8);
    border: 2px solid var(--star-gold);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.equibot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.75rem;
}

.equibot-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.equibot-icon {
    font-size: 3rem;
    animation: robotBob 2s ease-in-out infinite;
}

.equibot-title {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    color: var(--star-gold);
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.status-lights {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.status-light.red {
    background: #ff0000;
    animation: statusBlink 1s infinite;
}
.status-light.yellow {
    background: #ffff00;
    animation: statusBlink 1.5s infinite 0.3s;
}
.status-light.green {
    background: #00ff00;
    animation: statusBlink 2s infinite 0.6s;
}

.system-info {
    font-family: 'Courier New', monospace;
    color: var(--cosmic-pink);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blink {
    animation: blink 1s infinite;
}

.terminal-screen {
    background: #000;
    border: 2px solid var(--star-gold);
    border-radius: 10px;
    padding: 1rem;
    min-height: 200px;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.03) 0px,
        rgba(0, 255, 0, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    animation: scanLines 0.1s linear infinite;
}

.terminal-output {
    color: #00ff00;
    font-size: 1rem;
    line-height: 1.4;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.prompt {
    color: var(--star-gold);
    font-weight: bold;
}

.typewriter {
    border-right: 2px solid #00ff00;
    animation: blink-caret 0.75s step-end infinite;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.typewriter-complete {
    /* Same as typewriter but without the cursor and blinking animation */
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.typewriter-no-cursor {
    /* Keep typing animation but remove the blinking cursor */
    animation: typing 2s steps(40, end);
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.terminal-line .prompt {
    flex-shrink: 0;
    margin-right: 8px;
    align-self: flex-start;
}

.scrambling-coordinates {
    color: #57ff14 !important; /* Bright green */
    font-weight: bold;
    text-shadow: 0 0 5px #57ff14;
}

.scrambled-clock {
    color: #ffffff !important; /* White */
    font-family: 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 1px;
}

.alignment-unstable {
    color: #00bfff !important; /* Bright blue */
    font-weight: bold;
    text-shadow: 0 0 5px #00bfff;
}

.decoder-required {
    color: #00bfff !important; /* Bright blue */
    font-weight: bold;
    text-shadow: 0 0 5px #00bfff;
}

.clock-yellow {
    color: #ffff00 !important; /* Bright yellow */
    text-shadow: 0 0 5px #ffff00;
}

.uk-map-container {
    background: #000000;
    border: 2px solid var(--star-gold);
    border-radius: 10px;
    margin-top: 30px;
    padding: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: none; /* Initially hidden */
    overflow: hidden;
}

.map-header {
    text-align: center;
    color: var(--star-gold);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 0 0 5px var(--star-gold);
}

.uk-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.uk-map-image {
    max-width: 350px;
    max-height: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.scan-dot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.uk-outline {
    width: 100%;
    height: 100%;
    max-width: 350px;
}

.uk-border {
    filter: drop-shadow(0 0 3px #00ff00);
    animation: borderPulse 3s ease-in-out infinite;
}

.scan-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 5px #ff0000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.scan-dot.active {
    opacity: 1;
    animation: dotPulse 1s ease-in-out infinite;
}

.error-flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.6);
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.error-flash-overlay.flashing {
    animation: errorFlash 1.5s ease-in-out;
}

@keyframes errorFlash {
    0% { opacity: 0; }
    8% { opacity: 0.4; }
    16% { opacity: 0; }
    25% { opacity: 0; }
    33% { opacity: 0.4; }
    41% { opacity: 0; }
    50% { opacity: 0; }
    58% { opacity: 0.4; }
    66% { opacity: 0; }
    100% { opacity: 0; }
}

.radar-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.radar-circles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.radar-circle {
    position: absolute;
    top: 0;
    left: 50%;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    transform: translateX(-50%);
}

.circle-1 {
    width: 20%;
    height: 40%;
}

.circle-2 {
    width: 40%;
    height: 80%;
}

.circle-3 {
    width: 60%;
    height: 120%;
}

.circle-4 {
    width: 80%;
    height: 160%;
}

.circle-5 {
    width: 100%;
    height: 200%;
}

.radar-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.radar-grid-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(0, 255, 0, 0.2);
    transform-origin: top center;
}

.line-0 {
    transform: translateX(-50%) rotate(0deg);
}

.line-30 {
    transform: translateX(-50%) rotate(30deg);
}

.line-60 {
    transform: translateX(-50%) rotate(60deg);
}

.line-90 {
    transform: translateX(-50%) rotate(90deg);
}

.line-120 {
    transform: translateX(-50%) rotate(120deg);
}

.line-150 {
    transform: translateX(-50%) rotate(150deg);
}

.radar-scanner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.radar-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 255, 0, 1) 0%,
        rgba(0, 255, 0, 0.8) 20%,
        rgba(0, 255, 0, 0.6) 40%,
        rgba(0, 255, 0, 0.4) 60%,
        rgba(0, 255, 0, 0.2) 80%,
        rgba(0, 255, 0, 0) 100%);
    transform-origin: top center;
    animation: radarSweep 4s linear infinite;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
}

.radar-echo {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 255, 0, 0.3) 0%,
        rgba(0, 255, 0, 0.2) 20%,
        rgba(0, 255, 0, 0.1) 40%,
        rgba(0, 255, 0, 0.05) 60%,
        rgba(0, 255, 0, 0) 80%,
        rgba(0, 255, 0, 0) 100%);
    transform-origin: top center;
    animation: radarEcho 4s linear infinite;
    animation-delay: 0.2s;
}

@keyframes radarSweep {
    0% {
        transform: rotate(-90deg);
        opacity: 1;
    }
    50% {
        transform: rotate(90deg);
        opacity: 1;
    }
    100% {
        transform: rotate(-90deg);
        opacity: 1;
    }
}

@keyframes radarEcho {
    0% {
        transform: rotate(-90deg);
        opacity: 0.5;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: rotate(90deg);
        opacity: 0.1;
    }
    75% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(-90deg);
        opacity: 0.5;
    }
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; r: 3; }
    50% { opacity: 1; r: 5; }
}

/* terminal-header removed - icon/title stay at top */

.terminal-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
}

.start-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--star-gold);
}

.start-header .equibot-icon {
    font-size: 32px;
}

.start-header .equibot-title {
    margin: 0;
    font-size: 28px;
    color: var(--star-gold);
    text-shadow: 0 0 10px var(--star-gold);
}

.start-prompt {
    color: var(--cosmic-blue);
}

/* cosmic-logo removed - no longer used */

.start-prompt p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.8;
}

.cosmic-start-button {
    position: relative;
    background: linear-gradient(45deg, #1a237e, #3949ab);
    border: 2px solid var(--star-gold);
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: var(--star-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cosmic-start-button:hover {
    background: linear-gradient(45deg, #283593, #3f51b5);
    box-shadow: 0 0 20px var(--star-gold);
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: buttonSweep 2s infinite;
}

.button-text {
    position: relative;
    z-index: 1;
}

@keyframes buttonSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.progress-label {
    width: 150px;
    color: var(--cosmic-pink);
    font-weight: bold;
}

.progress-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--star-gold), var(--cosmic-pink));
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: progressShimmer 1.5s infinite;
}

.progress-percent {
    width: 40px;
    text-align: right;
    color: var(--star-gold);
    font-weight: bold;
}

/* Glitch Effects */
.glitch-text {
    animation: glitch 0.3s infinite;
}

.glitch-severe {
    animation: glitchSevere 0.1s infinite;
}

.error-text {
    color: #ff3333 !important;
    font-weight: bold;
    text-shadow: 0 0 5px #ff3333;
}

.system-crash {
    animation: systemCrash 0.2s infinite;
}

/* Location Content (Hidden Initially) */
.location-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.location-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.location-content.hidden {
    display: none;
}

.location-reveal {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--cosmic-pink);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
}

.cosmic-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--star-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: cosmicGlow 2s ease-in-out infinite alternate;
}

.location-details {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--star-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

.location-card h3 {
    color: var(--cosmic-pink);
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hype-section {
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid var(--cosmic-pink);
    border-radius: 20px;
    padding: 2rem;
}

.hype-section h3 {
    color: var(--star-gold);
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hype-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hype-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: white;
}

.hype-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.countdown-to-reveal {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.countdown-to-reveal h4 {
    color: var(--cosmic-pink);
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
}

.reveal-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--star-gold);
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--cosmic-pink);
    font-weight: bold;
}

/* Floating Background Elements */
.cosmic-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: cosmicFloat 20s infinite linear;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; right: 15%; animation-delay: -5s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: -10s; }
.element-4 { top: 40%; right: 30%; animation-delay: -15s; }
.element-5 { bottom: 20%; right: 10%; animation-delay: -20s; }

/* Equibot Keyframe Animations */
@keyframes robotBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes statusBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes scanLines {
    0% { transform: translateY(0px); }
    100% { transform: translateY(3px); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ff00; }
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitchSevere {
    0% { transform: translate(0) skewX(0deg); }
    10% { transform: translate(-5px, -5px) skewX(-5deg); }
    20% { transform: translate(-10px, 5px) skewX(5deg); }
    30% { transform: translate(5px, -10px) skewX(-10deg); }
    40% { transform: translate(-5px, 10px) skewX(10deg); }
    50% { transform: translate(-10px, 5px) skewX(-5deg); }
    60% { transform: translate(10px, 0px) skewX(5deg); }
    70% { transform: translate(0px, -10px) skewX(-10deg); }
    80% { transform: translate(-10px, 0px) skewX(10deg); }
    90% { transform: translate(10px, 5px) skewX(-5deg); }
    100% { transform: translate(0) skewX(0deg); }
}

@keyframes errorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes systemCrash {
    0% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(1deg); }
    50% { transform: scale(0.9) rotate(-1deg); }
    75% { transform: scale(1.05) rotate(0.5deg); }
    100% { transform: scale(1); }
}

@keyframes cosmicGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 20, 147, 0.3); }
}

@keyframes cosmicFloat {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.6; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.3; }
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes moveLight {
    0% {
        transform: rotate(15deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}

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

@keyframes laserSweep {
    0% {
        transform: translateX(-100px) rotate(-15deg) scaleY(0.5);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
        transform: translateX(-50px) rotate(-10deg) scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg) scaleY(1);
    }
    85% {
        opacity: 0.8;
        transform: translateX(50px) rotate(10deg) scaleY(0.8);
    }
    100% {
        transform: translateX(100px) rotate(15deg) scaleY(0.5);
        opacity: 0;
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) scale(0.5);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(2);
    }
}

@keyframes strobe {
    0%, 90% {
        opacity: 0;
        transform: scale(0.8);
    }
    5%, 15% {
        opacity: 1;
        transform: scale(1.2);
    }
    20%, 85% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fogFlow {
    0%, 100% {
        transform: translateX(-100px);
        opacity: 0.3;
    }
    50% {
        transform: translateX(100px);
        opacity: 0.7;
    }
}

/* Lineup Section */
.lineup-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(255, 20, 147, 0.2));
}

.lineup-image {
    text-align: center;
    margin-top: 3rem;
}

.lineup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.lineup-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 51, 153, 0.3);
}

/* Artists Section */
.artists-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.artists-section .container {
    max-width: 100%;
    padding: 0 2rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(102, 51, 153, 0.3);
    border-color: var(--cosmic-pink);
}

.artist-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #1a1a2e;
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(1px);
    color: white;
    padding: 4rem 1rem 0.8rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--star-gold);
    margin-bottom: 0.2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.artist-genre {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Collapsible Previous Performances Section */
.previous-artists-container {
    margin-top: 3rem;
}

.previous-artists-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}


.see-more-bar {
    text-align: center;
    margin: 2rem 0;
}

.see-more-btn {
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 51, 153, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.5);
}

.previous-artists-full {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease-out;
}

.previous-artists-full.show {
    display: grid;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stages Section */
.stages-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(124, 252, 0, 0.2));
    width: 100%;
    overflow-x: hidden;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 51, 153, 0.3);
}

.stage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 51, 153, 0.4);
    border-color: var(--primary-purple);
}

.stage-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.stage-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 51, 153, 0.7), rgba(74, 144, 226, 0.7));
    transition: all 0.3s ease;
}

.stage-card:hover .stage-image::before {
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.7), rgba(124, 252, 0, 0.7));
}

.stage-content {
    padding: 2rem;
}

.stage-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.stage-description {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    z-index: 2;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-stage-more {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.btn-stage-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    text-decoration: none;
    color: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--space-dark) 0%, var(--nebula-purple) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--star-gold);
    font-family: 'Fredoka One', cursive;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-purple), var(--cosmic-blue));
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--cosmic-pink), var(--star-gold));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 212, 0, 0.3);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .previous-artists-preview,
    .previous-artists-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Fix background attachment for mobile */
    .stage-lighting-section {
        background:
            linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
            url('../../assets/img/bg/countdown-bg-mobile.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Disable parallax effect on mobile to prevent lag */
    .parallax-bg::before {
        display: none !important;
    }

    /* Disable backdrop filters on mobile for clarity */
    .stage-lighting-section * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Fix countdown to stay in one line */
    .stage-countdown .countdown {
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: hidden;
        padding: 0;
        justify-content: center;
        max-width: 100%;
    }

    /* Make About Equinox content maximum width on mobile */
    .stage-content .about-features,
    .stage-content .info-grid {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Add spacing above stats section on mobile */
    .stage-content .about-stats {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 2rem 0 0 0 !important;
    }

    /* Add spacing around countdown on mobile */
    .stage-countdown {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 2rem 0 !important;
    }

    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden !important;
    }

    .stage-lighting-section,
    .stage-content,
    .lighting-container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .stage-countdown .countdown-item {
        min-width: 75px;
        max-width: 85px;
        padding: 0.8rem 0.4rem;
        flex-shrink: 1;
        flex-basis: 23%;
    }

    .stage-countdown .countdown-number {
        font-size: 1.5rem;
    }

    .stage-countdown .countdown-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    /* Fix artists grid for mobile - one per line */
    .new-artists-section .artists-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .new-artists-section .artist-card {
        height: auto;
        aspect-ratio: 1;
        max-width: 100%;
    }

    .new-artists-section .artist-image {
        aspect-ratio: 1;
        width: 100%;
        height: 100%;
        background-size: cover !important;
        background-position: center !important;
    }

    .new-artists-section .artist-info {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static !important;
        background: rgba(15, 15, 35, 0.95);
        border-radius: 8px;
        margin: 0.5rem 0;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: inset 0 0 20px rgba(255, 212, 0, 0.1);
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    /* Mobile dropdown active state with chevron rotation */
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-link {
        padding: 0.75rem 2rem;
        border-left: 3px solid transparent;
    }

    .dropdown-link:hover {
        border-left-color: var(--star-gold);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }

    .info-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .stages-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .previous-artists-preview,
    .previous-artists-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .sparkle {
        width: 3px;
        height: 3px;
    }

    .float-element {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 100px;
        height: 100px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Owl Carousel Custom Styles */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 100;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 46, 0.8) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--star-gold) !important;
    color: var(--space-dark) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.owl-dot.active {
    background: var(--star-gold) !important;
    transform: scale(1.3);
    border-color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional festival vibes */
.peace-symbol {
    position: absolute;
    font-size: 1.5rem;
    color: var(--peace-purple);
    opacity: 0.6;
    animation: gentle-spin 10s linear infinite;
}

@keyframes gentle-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buy Tickets Page */
.buy-hero {
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--cosmic-purple) 50%, var(--nebula-pink) 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.buy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.festival-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-icon {
    font-size: 1.2rem;
}

.ticket-info {
    padding: 80px 0;
    background: var(--bg-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Buy page specific info cards */
.ticket-info .info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-info .info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(255, 212, 0, 0.2);
}

.ticket-info .info-card.featured {
    border: 2px solid var(--accent-gold);
    background: rgba(255, 212, 0, 0.1);
}

.ticket-info .info-card.featured::before {
    content: '⭐ BEST VALUE ⭐';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.ticket-info .info-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.ticket-widget-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 30, 0.95) 0%,
        rgba(26, 26, 46, 0.9) 50%,
        rgba(10, 10, 30, 0.95) 100%),
        rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Buy page laser effects */
.ticket-widget-section .buy-laser {
    position: absolute;
    width: 2px;
    height: 100%;
    animation: laserSweep 12s linear infinite;
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 20px currentColor);
    border-radius: 50px;
    z-index: 2;
}

.ticket-widget-section .buy-laser-1 {
    left: 15%;
    animation-delay: 0s;
    background: linear-gradient(180deg, transparent 0%, #ff0080 30%, #ff0080 70%, transparent 100%);
}

.ticket-widget-section .buy-laser-2 {
    right: 20%;
    animation-delay: -6s;
    background: linear-gradient(180deg, transparent 0%, #00ff80 30%, #00ff80 70%, transparent 100%);
}

/* Buy page twinkling stars */
.ticket-widget-section .buy-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticket-widget-section .buy-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
}

.ticket-widget-section .buy-star:nth-child(odd) {
    animation-duration: 3s;
}

.ticket-widget-section .buy-star:nth-child(3n) {
    animation-duration: 5s;
    background: #ffd700;
}

.ticket-widget-section .buy-star:nth-child(5n) {
    animation-duration: 3.5s;
    background: #87ceeb;
    width: 1.5px;
    height: 1.5px;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.widget-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.widget-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.ticket-widget {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ticket-credit {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.ticket-credit a {
    color: var(--text-muted);
    text-decoration: none;
}

.additional-info {
    padding: 80px 0;
    background: var(--bg-dark);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.info-block h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Buy Page */
@media (max-width: 768px) {
    .festival-details {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-item {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-blocks {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 1.5rem;
    }
}