/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --neon-blue: #00d9ff;
    --neon-purple: #b794f6;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050715;
    --light-bg: #1a1f3a;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #00d9ff 0%, #b794f6 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #00d9ff 100%);
    --gradient-neon: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 50%, #ec4899 100%);
    --glow-color: rgba(59, 130, 246, 0.6);
    --glow-blue: rgba(0, 217, 255, 0.8);
    --glow-purple: rgba(139, 92, 246, 0.8);
}

/* Theme Variants */
body[data-theme="purple"] {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

body[data-theme="blue"] {
    --primary-color: #3b82f6;
    --secondary-color: #06b6d4;
    --accent-color: #8b5cf6;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #4facfe 100%);
}

body[data-theme="green"] {
    --primary-color: #10b981;
    --secondary-color: #14b8a6;
    --accent-color: #06b6d4;
    --gradient-1: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --gradient-2: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
    --gradient-hero: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #34d399 100%);
}

body[data-theme="orange"] {
    --primary-color: #f59e0b;
    --secondary-color: #ef4444;
    --accent-color: #f97316;
    --gradient-1: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-2: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --gradient-hero: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #fbbf24 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    transition: background 0.5s ease, color 0.5s ease;
    position: relative;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 217, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 200px 200px, 200px 200px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    animation: backgroundMove 20s ease infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes backgroundMove {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0 0, 0 0;
    }
    50% {
        background-position: 10% 10%, -10% -10%, 5% -5%, 50px 50px, -50px -50px;
    }
}

/* Tech Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-neon);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 40px rgba(139, 92, 246, 0.6);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    mix-blend-mode: difference;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--gradient-1);
    top: 30%;
    right: 30%;
    animation-delay: 7s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--gradient-2);
    bottom: 40%;
    right: 20%;
    animation-delay: 12s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Ensure all sections are above background */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    overflow: hidden;
}

/* Section Dividers - Visual Separators */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    opacity: 0.6;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    opacity: 0.6;
}

/* Section Number Indicators */
section[id] {
    counter-increment: section-counter;
}

section[id]::after {
    content: counter(section-counter, decimal-leading-zero);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 217, 255, 0.1);
    z-index: 0;
    line-height: 1;
}

body {
    counter-reset: section-counter;
}

@media (max-width: 768px) {
    section[id]::after {
        font-size: 4rem;
        top: 1rem;
        right: 1rem;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.3);
}

.navbar.scrolled .sbu-logo {
    height: 45px;
    max-width: 130px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 70px;
    padding: 0 1rem;
    width: 100%;
}

/* Ensure proper spacing for navbar elements */
.nav-wrapper > * {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 12;
    position: relative;
    max-width: 220px;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.9)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.7));
    }
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 1)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
}

.logo-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: none; /* Hide icon when logo image is present */
}

/* SBU Logo */
.sbu-logo-container {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: transparent;
    width: auto;
    min-width: 0;
    pointer-events: none;
    max-width: 140px;
    visibility: visible;
    opacity: 1;
}

/* Prevent SBU logo from overlapping with left/right elements */
@media (min-width: 1200px) {
    .sbu-logo-container {
        left: 42%;
    }
}

@media (min-width: 901px) and (max-width: 1199px) {
    .sbu-logo-container {
        left: 43%;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .sbu-logo-container {
        left: 44%;
    }
}

.sbu-logo {
    height: 50px;
    width: auto;
    max-width: 140px;
    min-width: 0;
    object-fit: contain;
    filter: 
        brightness(1.15) 
        contrast(1.2)
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    opacity: 1;
    background: transparent !important;
    mix-blend-mode: screen;
    pointer-events: auto;
    -webkit-filter: 
        brightness(1.15) 
        contrast(1.2)
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.sbu-logo:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: 
        brightness(1.2) 
        contrast(1.3)
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    -webkit-filter: 
        brightness(1.2) 
        contrast(1.3)
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
    z-index: 11;
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    overflow: hidden;
    padding-top: 80px;
    z-index: 1;
    isolation: isolate;
    padding: 6rem 0;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(102, 126, 234, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.5);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-tagline {
    font-family: 'Roboto Mono', 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--glow-blue), 0 0 40px var(--glow-blue);
    margin-bottom: 1rem;
    animation: glowPulse 2s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px var(--glow-blue), 0 0 40px var(--glow-blue);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 30px var(--glow-blue), 0 0 60px var(--glow-blue), 0 0 80px var(--glow-purple);
        opacity: 0.9;
    }
}

.hero-title {
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-title .subtitle {
    display: block;
    font-size: 2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.countdown-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-1);
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.countdown-number {
    font-family: 'Roboto Mono', 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
}

.countdown-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: blink 1s infinite;
}

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

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

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.organizer-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 50px;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem 2.5rem;
    background: rgba(26, 31, 58, 0.6);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.15);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.4);
    background: rgba(26, 31, 58, 0.9);
}

.stat-item.mega-prize {
    border: 3px solid var(--neon-blue);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
    animation: megaPrizePulse 2s ease infinite;
}

@keyframes megaPrizePulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 217, 255, 0.6), 0 0 50px rgba(139, 92, 246, 0.5);
    }
}

.stat-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--glow-blue);
}

.stat-item.mega-prize .stat-icon {
    color: #fbbf24;
    text-shadow: 0 0 30px #fbbf24;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-neon);
    border-radius: 25px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-item:hover .stat-glow {
    opacity: 0.6;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.stat-item.mega-prize .stat-value {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: valueShine 2s ease infinite;
}

@keyframes valueShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.stat-item.mega-prize .stat-label {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: buttonShine 3s infinite;
}

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

.btn-primary:hover {
    transform: translateY(-8px) scale(1.1) rotateZ(1deg);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.9), 0 0 60px rgba(0, 217, 255, 0.7), 0 0 100px rgba(139, 92, 246, 0.5);
    animation: buttonPulse 1s ease infinite;
    filter: brightness(1.2);
    border-width: 3px;
}

.btn-primary:hover i {
    transform: scale(1.3) rotate(15deg);
    animation: iconWiggle 0.5s ease infinite;
}

@keyframes iconWiggle {
    0%, 100% {
        transform: scale(1.3) rotate(15deg);
    }
    50% {
        transform: scale(1.4) rotate(-15deg);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.7), 0 0 40px rgba(0, 217, 255, 0.5);
    }
    50% {
        box-shadow: 0 25px 60px rgba(102, 126, 234, 0.8), 0 0 50px rgba(0, 217, 255, 0.6);
    }
}

.btn-secondary:hover {
    transform: translateY(-8px) scale(1.1) rotateZ(-1deg);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.8), 0 0 60px rgba(0, 217, 255, 0.6), 0 0 100px rgba(139, 92, 246, 0.4);
    border-width: 3px;
    animation: buttonSecondaryGlow 1s ease infinite;
    filter: brightness(1.2);
}

.btn-secondary:hover i {
    transform: scale(1.3) rotate(-15deg);
    animation: iconWiggle 0.5s ease infinite;
}

@keyframes buttonSecondaryGlow {
    0%, 100% {
        box-shadow: 0 30px 70px rgba(59, 130, 246, 0.8), 0 0 60px rgba(0, 217, 255, 0.6);
    }
    50% {
        box-shadow: 0 35px 80px rgba(59, 130, 246, 1), 0 0 70px rgba(0, 217, 255, 0.8);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.hero-feature-item:hover {
    transform: translateY(-8px) scale(1.12) rotateZ(2deg);
    background: rgba(0, 217, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.7), 0 0 60px rgba(139, 92, 246, 0.5), 0 0 100px rgba(236, 72, 153, 0.3);
    border-color: var(--neon-blue);
    border-width: 3px;
    animation: featureItemBounce 0.8s ease infinite;
}

.hero-feature-item:hover i {
    transform: scale(1.3) rotate(360deg);
    animation: featureIconSpin 1s ease infinite;
}

@keyframes featureItemBounce {
    0%, 100% {
        transform: translateY(-8px) scale(1.12) rotateZ(2deg);
    }
    50% {
        transform: translateY(-12px) scale(1.15) rotateZ(-2deg);
    }
}

@keyframes featureIconSpin {
    0%, 100% {
        transform: scale(1.3) rotate(360deg);
    }
    50% {
        transform: scale(1.4) rotate(370deg);
    }
}

.hero-feature-item i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0, 217, 255, 0.5);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4), 0 0 30px rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto Mono', monospace;
    animation: tagPulse 2s ease infinite;
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes tagPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4), 0 0 30px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6), 0 0 50px rgba(0, 217, 255, 0.5);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.section-title {
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
    position: relative;
    display: inline-block;
    animation: titleGlow 3s ease infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-neon);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    animation: lineExpand 1s ease;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--light-bg);
    padding: 6rem 0 !important;
}

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

.about-card {
    background: rgba(26, 31, 58, 0.7);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-20px) scale(1.08) rotateZ(1deg);
    border-color: var(--neon-blue);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.5), 0 0 100px rgba(236, 72, 153, 0.3);
    background: rgba(26, 31, 58, 0.95);
    animation: cardHoverPulse 1.5s ease infinite;
}

@keyframes cardHoverPulse {
    0%, 100% {
        box-shadow: 0 30px 80px rgba(0, 217, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.5);
    }
    50% {
        box-shadow: 0 35px 90px rgba(0, 217, 255, 0.8), 0 0 80px rgba(139, 92, 246, 0.7), 0 0 120px rgba(236, 72, 153, 0.4);
    }
}

.about-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.about-card:hover .about-icon {
    transform: rotate(360deg) scale(1.25) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.8), 0 0 70px rgba(139, 92, 246, 0.7), 0 0 100px rgba(236, 72, 153, 0.5);
    animation: iconBounce 0.6s ease infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: rotate(360deg) scale(1.25) translateY(-5px);
    }
    50% {
        transform: rotate(360deg) scale(1.3) translateY(-8px);
    }
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events {
    padding: 6rem 0 !important;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(26, 31, 58, 0.7);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-20px) scale(1.1) rotateY(5deg);
    border-color: var(--neon-blue);
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), inset 0 0 50px rgba(0, 217, 255, 0.2), 0 0 120px rgba(236, 72, 153, 0.3);
    background: rgba(26, 31, 58, 0.98);
    z-index: 10;
    animation: eventCardGlow 2s ease infinite;
    border-width: 3px;
}

@keyframes eventCardGlow {
    0%, 100% {
        box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 50px 110px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8), 0 0 150px rgba(236, 72, 153, 0.4);
    }
}

.event-card:hover .event-icon {
    transform: rotate(360deg) scale(1.3) translateY(-8px) rotateZ(10deg);
    box-shadow: 0 30px 70px rgba(0, 217, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.7), 0 0 100px rgba(236, 72, 153, 0.5);
    animation: eventIconPulse 1s ease infinite;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 217, 255, 1));
}

@keyframes eventIconPulse {
    0%, 100% {
        transform: rotate(360deg) scale(1.3) translateY(-8px) rotateZ(10deg);
        filter: brightness(1.2);
    }
    50% {
        transform: rotate(360deg) scale(1.35) translateY(-10px) rotateZ(15deg);
        filter: brightness(1.4);
    }
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card.featured {
    border-color: var(--accent-color);
    background: rgba(236, 72, 153, 0.1);
}

.event-card.featured::before {
    background: var(--gradient-2);
}

.event-card.special {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--secondary-color);
}

.event-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-neon);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
    position: relative;
}

.event-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-icon::after {
    opacity: 1;
}

.event-card.featured .event-icon {
    background: var(--gradient-2);
}

.event-card.special .event-icon {
    background: var(--gradient-3);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.event-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-prize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
}

.event-prize i {
    color: #fbbf24;
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.shared-pool-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   SPECIAL ATTRACTION
   ======================================== */
.special-attraction {
    background: var(--darker-bg);
    padding: 6rem 0 !important;
}

.attraction-card {
    background: var(--gradient-neon);
    padding: 4rem;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.attraction-card:hover {
    transform: scale(1.05) rotateZ(1deg);
    box-shadow: 0 50px 120px rgba(0, 217, 255, 0.8), 0 0 100px rgba(139, 92, 246, 0.7), 0 0 150px rgba(236, 72, 153, 0.5);
    animation: attractionCardGlow 2s ease infinite;
    border-width: 4px;
}

@keyframes attractionCardGlow {
    0%, 100% {
        box-shadow: 0 50px 120px rgba(0, 217, 255, 0.8), 0 0 100px rgba(139, 92, 246, 0.7);
    }
    50% {
        box-shadow: 0 60px 140px rgba(0, 217, 255, 1), 0 0 120px rgba(139, 92, 246, 0.9);
    }
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.attraction-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.attraction-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.attraction-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.attraction-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.attraction-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.attraction-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.attraction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.attraction-badge i,
.attraction-badge span {
    color: white;
    font-weight: 600;
}

/* ========================================
   PRIZE POOL SECTION
   ======================================== */
.prize-pool {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--darker-bg) 100%);
    padding: 6rem 0 !important;
    position: relative;
    overflow: hidden;
}

/* Floating Prize Elements */
.prize-background-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-trophy {
    position: absolute;
    font-size: 3rem;
    color: rgba(251, 191, 36, 0.3);
    animation: floatTrophy 15s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.trophy-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.trophy-2 {
    top: 60%;
    right: 8%;
    animation-delay: 5s;
    font-size: 2.5rem;
}

.trophy-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
    font-size: 2rem;
}

.floating-coin {
    position: absolute;
    font-size: 4rem;
    color: rgba(0, 217, 255, 0.2);
    font-weight: 900;
    font-family: 'Roboto Mono', monospace;
    animation: floatCoin 12s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.coin-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 7s;
    font-size: 3rem;
}

.coin-3 {
    top: 50%;
    left: 8%;
    animation-delay: 4s;
    font-size: 3.5rem;
}

@keyframes floatTrophy {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(10deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -50px) rotate(-10deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, -30px) rotate(5deg);
        opacity: 0.5;
    }
}

@keyframes floatCoin {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-40px, -40px) scale(1.2);
        opacity: 0.4;
    }
}

.prize-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.prize-main {
    text-align: center;
    padding: 5rem 4rem;
    background: var(--gradient-neon);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 217, 255, 0.6), 0 0 80px rgba(139, 92, 246, 0.5), inset 0 0 50px rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    animation: prizeGlow 3s ease infinite, prizeFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes prizeFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

.prize-main.mega-prize-card {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #ec4899 50%, #8b5cf6 75%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: prizeGlow 3s ease infinite, prizeFloat 4s ease-in-out infinite, gradientShift 5s ease infinite;
}

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

/* Prize Sparkles */
.prize-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px white;
    animation: sparkleFloat 3s ease infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 35%;
    right: 15%;
    animation-delay: 1.5s;
}

.sparkle-5 {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(20px, -20px) scale(1.5);
        opacity: 1;
    }
}

@keyframes prizeGlow {
    0%, 100% {
        box-shadow: 0 30px 80px rgba(0, 217, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 35px 90px rgba(0, 217, 255, 0.7), 0 0 80px rgba(139, 92, 246, 0.6);
    }
}

.prize-icon {
    font-size: 5rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.prize-icon.floating-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-ring {
    position: absolute;
    inset: -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease infinite;
}

.icon-ring.ring-2 {
    inset: -35px;
    border-width: 2px;
    animation-delay: 1s;
    opacity: 0.5;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

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

.prize-amount {
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3);
    line-height: 1;
    position: relative;
}

.prize-amount.mega-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    font-size: 6rem;
    animation: amountGlow 2s ease infinite;
}

@keyframes amountGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.5);
    }
}

.currency {
    font-size: 4rem;
    animation: currencyBounce 2s ease infinite;
}

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

.amount-main {
    display: inline-block;
    animation: numberPulse 1.5s ease infinite;
}

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

.prize-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Roboto Mono', monospace;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.prize-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prize-cta:hover {
    transform: scale(1.2) translateY(-5px) rotateZ(2deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    border-width: 3px;
    animation: ctaPulse 0.8s ease infinite;
}

.prize-cta:hover i {
    animation: firePulse 0.5s ease infinite, iconRotate 1s linear infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1.2) translateY(-5px) rotateZ(2deg);
    }
    50% {
        transform: scale(1.25) translateY(-8px) rotateZ(-2deg);
    }
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.prize-cta i {
    animation: firePulse 1s ease infinite;
}

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

.prize-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(26, 31, 58, 0.6);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.breakdown-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breakdown-title i {
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.prize-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.prize-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-neon);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.prize-item:hover::before {
    transform: scaleY(1);
}

.prize-item:hover {
    border-color: var(--neon-blue);
    border-width: 3px;
    transform: translateX(20px) scale(1.08) rotateY(3deg);
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.4);
    background: rgba(26, 31, 58, 0.98);
    animation: prizeItemGlow 1.5s ease infinite;
}

.prize-item:hover .prize-value {
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8), 0 0 50px rgba(251, 191, 36, 0.6);
    transition: all 0.3s ease;
}

@keyframes prizeItemGlow {
    0%, 100% {
        box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 50px 110px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8);
    }
}

.prize-item.featured-prize {
    border: 3px solid #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.prize-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.prize-rank {
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Roboto Mono', monospace;
}

.prize-rank i {
    font-size: 1rem;
}

.prize-event {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.prize-value {
    color: #fbbf24;
    font-weight: 900;
    font-size: 1.8rem;
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    letter-spacing: -1px;
}

.prize-bar {
    height: 6px;
    background: var(--gradient-neon);
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    animation: barFill 1.5s ease;
    position: relative;
    overflow: hidden;
}

.prize-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: barShine 2s ease infinite;
}

@keyframes barFill {
    from {
        width: 0;
    }
}

@keyframes barShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.prize-total-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--gradient-neon);
    border-radius: 20px;
    margin-top: 1rem;
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.total-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.total-item i {
    font-size: 1.5rem;
}

.total-amount {
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: -1px;
}

.prize-note {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.prize-note i {
    color: var(--neon-blue);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

/* Prize Motivation Cards */
.prize-motivation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.motivation-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.7);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.motivation-card:hover {
    transform: translateY(-15px) scale(1.1) rotateZ(-1deg);
    border-color: var(--neon-blue);
    border-width: 3px;
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.4);
    background: rgba(26, 31, 58, 0.98);
    animation: motivationFloat 1.8s ease infinite;
}

@keyframes motivationFloat {
    0%, 100% {
        transform: translateY(-15px) scale(1.1) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-20px) scale(1.12) rotateZ(1deg);
    }
}

.motivation-card i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-blue);
    display: block;
    transition: all 0.3s ease;
}

.motivation-card:hover i {
    transform: scale(1.4) rotate(360deg) translateY(-5px);
    animation: motivationIconSpin 1s ease infinite;
    filter: brightness(1.4) drop-shadow(0 0 30px rgba(0, 217, 255, 1));
}

@keyframes motivationIconSpin {
    0%, 100% {
        transform: scale(1.4) rotate(360deg) translateY(-5px);
    }
    50% {
        transform: scale(1.5) rotate(365deg) translateY(-8px);
    }
}

.motivation-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.motivation-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   WHY ATTEND / HIGHLIGHTS SECTION
   ======================================== */
.why-attend {
    background: var(--light-bg);
    padding: 6rem 0 !important;
}

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

.highlight-card {
    background: rgba(26, 31, 58, 0.7);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.15);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-25px) scale(1.1) rotateX(5deg);
    border-color: var(--neon-blue);
    border-width: 3px;
    box-shadow: 0 50px 100px rgba(0, 217, 255, 0.7), 0 0 80px rgba(139, 92, 246, 0.6), inset 0 0 60px rgba(0, 217, 255, 0.2), 0 0 150px rgba(236, 72, 153, 0.4);
    background: rgba(26, 31, 58, 0.98);
    z-index: 10;
    animation: highlightCardFloat 2s ease infinite;
}

@keyframes highlightCardFloat {
    0%, 100% {
        transform: translateY(-25px) scale(1.1) rotateX(5deg);
    }
    50% {
        transform: translateY(-30px) scale(1.12) rotateX(3deg);
    }
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card.mega {
    grid-column: span 2;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.05);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg) scale(1.4) translateY(-10px) rotateZ(15deg);
    box-shadow: 0 30px 70px rgba(0, 217, 255, 0.9), 0 0 80px rgba(139, 92, 246, 0.8), 0 0 120px rgba(236, 72, 153, 0.6);
    animation: highlightIconDance 0.8s ease infinite;
    filter: brightness(1.3) saturate(1.5);
}

@keyframes highlightIconDance {
    0%, 100% {
        transform: rotate(360deg) scale(1.4) translateY(-10px) rotateZ(15deg);
    }
    25% {
        transform: rotate(360deg) scale(1.45) translateY(-12px) rotateZ(20deg);
    }
    75% {
        transform: rotate(360deg) scale(1.4) translateY(-10px) rotateZ(10deg);
    }
}

.highlight-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
    color: var(--neon-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Roboto Mono', monospace;
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.highlight-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.highlight-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-list i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

/* ========================================
   EXPERIENCE TIMELINE SECTION
   ======================================== */
.experience-section {
    background: var(--darker-bg);
    padding: 6rem 0 !important;
    position: relative;
}

.experience-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-neon);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.5);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 3rem;
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: rgba(26, 31, 58, 0.7);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.15);
}

.timeline-content:hover {
    border-color: var(--neon-blue);
    border-width: 3px;
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.4);
    transform: translateY(-15px) scale(1.05) rotateX(3deg);
    background: rgba(26, 31, 58, 0.98);
    animation: timelineGlow 2s ease infinite;
}

@keyframes timelineGlow {
    0%, 100% {
        box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 50px 110px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8);
    }
}

.timeline-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.9), 0 0 80px rgba(139, 92, 246, 0.8);
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', 'Orbitron', sans-serif;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   FUN FEATURES SECTION
   ======================================== */
.fun-features {
    background: var(--light-bg);
    padding: 6rem 0 !important;
}

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

.fun-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.7);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
}

.fun-item:hover {
    transform: translateY(-20px) scale(1.15) rotateZ(-2deg);
    border-color: var(--neon-blue);
    border-width: 3px;
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.4);
    background: rgba(26, 31, 58, 0.98);
    z-index: 10;
    animation: funItemBounce 1.2s ease infinite;
}

@keyframes funItemBounce {
    0%, 100% {
        transform: translateY(-20px) scale(1.15) rotateZ(-2deg);
    }
    50% {
        transform: translateY(-25px) scale(1.18) rotateZ(2deg);
    }
}

.fun-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
}

.fun-item:hover .fun-icon {
    transform: rotate(360deg) scale(1.4) translateY(-10px) rotateZ(20deg);
    box-shadow: 0 35px 80px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8), 0 0 130px rgba(236, 72, 153, 0.6);
    animation: funIconSpin 0.6s ease infinite;
    filter: brightness(1.4) drop-shadow(0 0 40px rgba(0, 217, 255, 1));
}

@keyframes funIconSpin {
    0%, 100% {
        transform: rotate(360deg) scale(1.4) translateY(-10px) rotateZ(20deg);
    }
    50% {
        transform: rotate(380deg) scale(1.45) translateY(-12px) rotateZ(25deg);
    }
}

.fun-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.fun-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   REGISTRATION SECTION (REMOVED - Keeping styles for reference)
   ======================================== */
.registration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.registration-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.registration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.registration-card.primary {
    border-color: var(--primary-color);
}

.registration-card.secondary {
    border-color: var(--accent-color);
}

.reg-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.registration-card.secondary .reg-icon {
    background: var(--gradient-2);
}

.registration-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reg-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.reg-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.reg-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.reg-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reg-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Registration Urgency */
.registration-urgency {
    text-align: center;
    margin-bottom: 2rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
    animation: pulse 2s infinite;
}

.urgency-badge i {
    animation: bounce 1s infinite;
}

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

/* Featured Registration Card */
.registration-card.featured-reg {
    position: relative;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), 0 20px 60px rgba(59, 130, 246, 0.2);
}

.reg-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-neon);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
    z-index: 10;
}

.reg-value-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    color: var(--neon-blue);
    font-weight: 700;
    margin: 1rem 0;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.reg-cta-wrapper {
    margin-top: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    width: 100%;
}

.reg-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* QR Code Section */
.qr-code-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(10px);
}

.qr-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
}

.qr-code {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--neon-blue);
}

.qr-placeholder {
    text-align: center;
    color: var(--dark-bg);
}

.qr-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.qr-placeholder p {
    font-weight: 700;
    font-size: 1.1rem;
}

.qr-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.qr-info h3 i {
    color: var(--neon-blue);
    margin-right: 0.5rem;
}

.qr-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* Registration Benefits */
.registration-benefits {
    margin-top: 4rem;
    text-align: center;
}

.registration-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

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

.benefit-item {
    padding: 2rem;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-blue);
}

.benefit-item p {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* WhatsApp Link */
.contact-link.whatsapp {
    background: #25d366;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    display: inline-flex;
    color: white !important;
}

.contact-link.whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

/* ========================================
   SURVEY SECTION
   ======================================== */
.survey-section {
    background: var(--darker-bg);
    padding: 6rem 0 !important;
    position: relative;
}

.survey-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.survey-card {
    background: rgba(26, 31, 58, 0.9);
    border-radius: 30px;
    border: 3px solid rgba(0, 217, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.3), 0 0 100px rgba(139, 92, 246, 0.2);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: surveyPulse 3s ease infinite;
}

@keyframes surveyPulse {
    0%, 100% {
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.3), 0 0 100px rgba(139, 92, 246, 0.2);
        border-color: rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 217, 255, 0.5), 0 0 120px rgba(139, 92, 246, 0.4);
        border-color: rgba(0, 217, 255, 0.6);
    }
}

.survey-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
    animation: urgencyPulse 2s ease infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 59, 48, 0.6);
    }
}

.survey-urgency-badge i {
    font-size: 1.2rem;
    animation: iconBounce 1s ease infinite;
}

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

.survey-iframe-wrapper {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.survey-iframe {
    width: 100%;
    min-height: 2965px;
    height: 2965px;
    border: none;
    border-radius: 15px;
    background: white;
    display: block;
    transition: all 0.3s ease;
}

.survey-iframe:hover {
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.survey-footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.survey-footer p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.survey-footer i {
    color: var(--neon-blue);
    font-size: 1.1rem;
}

.survey-nav-link {
    position: relative;
}

.survey-nav-link::before {
    content: '🔴';
    position: absolute;
    top: -8px;
    right: -15px;
    font-size: 0.6rem;
    animation: dotPulse 1.5s ease infinite;
}

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

/* Survey Section Mobile Responsive */
@media (max-width: 768px) {
    .survey-card {
        padding: 2rem 1.5rem;
    }

    .survey-urgency-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .survey-iframe-wrapper {
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .survey-iframe {
        min-height: 2500px;
        height: 2500px;
    }

    .survey-footer {
        padding: 1rem;
    }

    .survey-footer p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .survey-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .survey-urgency-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .survey-iframe-wrapper {
        padding: 0.3rem;
    }

    .survey-iframe {
        min-height: 2300px;
        height: 2300px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--light-bg);
    padding: 6rem 0 !important;
}

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

.contact-card {
    background: rgba(26, 31, 58, 0.7);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-20px) scale(1.08) rotateZ(2deg);
    border-color: var(--neon-blue);
    border-width: 3px;
    box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.4);
    background: rgba(26, 31, 58, 0.98);
    animation: contactCardPulse 1.5s ease infinite;
}

@keyframes contactCardPulse {
    0%, 100% {
        box-shadow: 0 40px 90px rgba(0, 217, 255, 0.7), 0 0 70px rgba(139, 92, 246, 0.6);
    }
    50% {
        box-shadow: 0 50px 110px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8);
    }
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.3) translateY(-10px) rotateZ(15deg);
    box-shadow: 0 35px 80px rgba(0, 217, 255, 0.9), 0 0 90px rgba(139, 92, 246, 0.8), 0 0 130px rgba(236, 72, 153, 0.6);
    animation: contactIconSpin 0.8s ease infinite;
    filter: brightness(1.3) drop-shadow(0 0 35px rgba(0, 217, 255, 1));
}

@keyframes contactIconSpin {
    0%, 100% {
        transform: rotate(360deg) scale(1.3) translateY(-10px) rotateZ(15deg);
    }
    50% {
        transform: rotate(375deg) scale(1.35) translateY(-12px) rotateZ(20deg);
    }
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-label {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.contact-instagram {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 25px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.contact-instagram:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(236, 72, 153, 0.4);
    transform: translateY(-5px);
}

.instagram-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4), 0 0 20px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

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

.instagram-link:hover::before {
    left: 100%;
}

.instagram-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6), 0 0 30px rgba(236, 72, 153, 0.5);
    filter: brightness(1.1);
}

.instagram-link i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.9)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.7));
}

.footer-logo-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-logo i {
    color: var(--primary-color);
    display: none; /* Hide icon when logo image is present */
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--neon-blue) !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--glow-blue);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   CHATBOT STYLES
   ======================================== */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9998 !important;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: chatbotPulse 2s ease infinite;
    visibility: visible !important;
    opacity: 1 !important;
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.7), 0 0 60px rgba(139, 92, 246, 0.6);
}

.chatbot-toggle.active {
    background: rgba(255, 59, 48, 0.9);
    animation: none;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--darker-bg);
    animation: badgePulse 1.5s ease infinite;
}

@keyframes chatbotPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.7), 0 0 60px rgba(139, 92, 246, 0.6);
    }
}

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

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 140px);
    background: rgba(26, 31, 58, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 217, 255, 0.3);
    border: 2px solid rgba(0, 217, 255, 0.3);
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
}

.chatbot-container.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    visibility: visible;
}

.chatbot-header {
    padding: 1.5rem;
    background: var(--gradient-neon);
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.chatbot-title i {
    font-size: 1.3rem;
    animation: robotFloat 3s ease-in-out infinite;
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--gradient-neon);
    border-radius: 10px;
}

.chatbot-message {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.message-avatar.user-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.message-content {
    max-width: 75%;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.user-message .message-content {
    background: var(--gradient-neon);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-content p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.user-message .message-content p {
    color: white;
}

.message-content a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.message-content a:hover {
    color: var(--neon-pink);
    text-decoration: underline;
}

.chatbot-input-container {
    padding: 1rem 1.5rem;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    background: rgba(26, 31, 58, 0.95);
}

.chatbot-input::placeholder {
    color: var(--text-secondary);
}

.chatbot-send {
    width: 45px;
    height: 45px;
    background: var(--gradient-neon);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.chatbot-send:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-quick-actions {
    padding: 1rem 1.5rem;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.quick-action-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        right: 10px;
        bottom: 80px;
        max-width: none;
        max-height: none;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .message-content {
        max-width: 85%;
    }
}

/* ========================================
   SURVEY MODAL POPUP
   ======================================== */
.survey-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
}

.survey-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.survey-modal {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: rgba(26, 31, 58, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 217, 255, 0.4), 0 0 120px rgba(139, 92, 246, 0.3);
    border: 3px solid rgba(0, 217, 255, 0.4);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: surveyModalPulse 3s ease infinite;
    overflow: hidden;
}

.survey-modal-overlay.active .survey-modal {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes surveyModalPulse {
    0%, 100% {
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 217, 255, 0.4), 0 0 120px rgba(139, 92, 246, 0.3);
        border-color: rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8), 0 0 100px rgba(0, 217, 255, 0.6), 0 0 150px rgba(139, 92, 246, 0.5);
        border-color: rgba(0, 217, 255, 0.6);
    }
}

.survey-modal-header {
    padding: 2rem;
    background: var(--gradient-neon);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.survey-modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.survey-modal-title i {
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.survey-modal-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.survey-modal-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    font-weight: 400;
}

.survey-modal-close {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.survey-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.survey-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.survey-modal-content::-webkit-scrollbar {
    width: 8px;
}

.survey-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.survey-modal-content::-webkit-scrollbar-thumb {
    background: var(--gradient-neon);
    border-radius: 10px;
}

.survey-modal-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
    animation: urgencyPulse 2s ease infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.survey-modal-urgency-badge i {
    font-size: 1.1rem;
    animation: iconBounce 1s ease infinite;
}

.survey-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1rem;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.2);
    flex: 1;
    min-height: 400px;
}

.survey-modal-iframe {
    width: 100%;
    min-height: 600px;
    height: 70vh;
    max-height: 800px;
    border: none;
    border-radius: 15px;
    background: white;
    display: block;
}

.survey-modal-footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.survey-modal-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.survey-modal-footer i {
    color: var(--neon-blue);
    font-size: 1rem;
}

.survey-modal-done-btn {
    padding: 0.8rem 2rem;
    background: var(--gradient-neon);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    align-self: center;
}

.survey-modal-done-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.survey-thank-you-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--gradient-neon);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 100001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.survey-thank-you-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.survey-thank-you-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.survey-thank-you-content i {
    font-size: 2rem;
    color: #10b981;
}

.survey-thank-you-content p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* Survey Modal Mobile Responsive */
@media (max-width: 768px) {
    .survey-modal-overlay {
        padding: 10px;
    }

    .survey-modal {
        width: 100%;
        max-height: 95vh;
        border-radius: 25px;
    }

    .survey-modal-header {
        padding: 1.5rem;
    }

    .survey-modal-title h3 {
        font-size: 1.2rem;
    }

    .survey-modal-subtitle {
        font-size: 0.8rem;
    }

    .survey-modal-title i {
        font-size: 1.5rem;
    }

    .survey-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .survey-modal-content {
        padding: 1.5rem;
    }

    .survey-modal-urgency-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .survey-modal-iframe-wrapper {
        padding: 0.5rem;
        min-height: 300px;
    }

    .survey-modal-iframe {
        min-height: 500px;
        height: 60vh;
        max-height: 600px;
    }

    .survey-modal-footer {
        padding: 1rem;
    }

    .survey-modal-footer p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .survey-modal-done-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .survey-thank-you-notification {
        top: 20px;
        right: 10px;
        left: 10px;
        padding: 1rem 1.5rem;
        transform: translateY(-100px);
    }

    .survey-thank-you-notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .survey-modal {
        border-radius: 20px;
        max-height: 98vh;
    }

    .survey-modal-header {
        padding: 1rem;
    }

    .survey-modal-title {
        gap: 0.8rem;
    }

    .survey-modal-title h3 {
        font-size: 1rem;
    }

    .survey-modal-subtitle {
        font-size: 0.75rem;
    }

    .survey-modal-iframe {
        min-height: 400px;
        height: 50vh;
        max-height: 500px;
    }

    .survey-modal-urgency-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Enhanced Glow Effects */
.hero-title {
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
}

.btn-primary:hover,
.btn-secondary:hover {
    filter: drop-shadow(0 5px 20px rgba(102, 126, 234, 0.6));
}

/* Text Glow Animation */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(139, 92, 246, 0.5);
    }
}

.gradient-text {
    animation: textGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* Enhanced scrolling behavior - Prevent scroll jank */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Smooth scroll snap for better UX */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.countdown-item {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(0, 217, 255, 0.3);
}

.stat-value {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .logo-image {
        height: 42px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .footer-logo-image {
        height: 40px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .sbu-logo {
        height: 38px !important;
        max-width: 110px !important;
        min-width: 0;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .sbu-logo-container {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .logo {
        max-width: 170px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }

    /* Adjust SBU logo for medium tablets */
    @media (max-width: 900px) and (min-width: 601px) {
        .sbu-logo {
            height: 38px;
            max-width: 110px;
            min-width: 0;
        }
    }

    /* Mobile phone adjustments - keep logo visible but compact */
    @media (max-width: 600px) {
        .sbu-logo {
            height: 36px !important;
            max-width: 100px !important;
            min-width: 80px !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
            mix-blend-mode: screen !important;
            filter: 
                brightness(1.2) 
                contrast(1.3)
                drop-shadow(0 0 5px rgba(255, 255, 255, 0.4)) !important;
        }
        
        .logo {
            max-width: 140px;
        }
        
        .logo-text {
            font-size: 1rem;
        }
        
        .sbu-logo-container {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            z-index: 15 !important;
            position: absolute !important;
            left: 50% !important;
            top: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: auto !important;
            max-width: 100px !important;
        }
        
        /* Adjust navbar padding for mobile */
        .navbar {
            padding: 0.9rem 0;
            min-height: 50px;
        }
        
        .nav-wrapper {
            min-height: 50px;
        }
        
        /* Ensure menu toggle doesn't overlap */
        .menu-toggle {
            z-index: 20;
            position: relative;
        }
    }
    
    /* Extra small phones - even more compact */
    @media (max-width: 480px) {
        .sbu-logo {
            height: 32px !important;
            max-width: 90px !important;
            min-width: 70px !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
            mix-blend-mode: screen !important;
            filter: 
                brightness(1.25) 
                contrast(1.35)
                drop-shadow(0 0 5px rgba(255, 255, 255, 0.4)) !important;
        }
        
        .logo {
            max-width: 120px;
        }
        
        /* Ensure navbar has enough space */
        .navbar {
            padding: 0.8rem 0;
            min-height: 48px;
        }
        
        .nav-wrapper {
            min-height: 48px;
        }
        
        .logo-image {
            height: 34px;
        }
        
        .logo-text {
            font-size: 0.9rem;
        }
        
        .sbu-logo-container {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            z-index: 15 !important;
            position: absolute !important;
            left: 50% !important;
            top: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: auto !important;
            max-width: 90px !important;
        }
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-item.mega-prize .stat-value {
        font-size: 2.5rem;
    }

    .stat-item {
        padding: 1.5rem 1.5rem;
        min-width: 150px;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 1rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }

    .qr-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .qr-code {
        margin: 0 auto;
    }

    .highlight-card.mega {
        grid-column: span 1;
    }

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

    .experience-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-content {
        margin-left: 0;
    }

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

    .prize-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prize-amount.mega-amount {
        font-size: 4rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .currency {
        font-size: 3rem;
    }

    .prize-main {
        padding: 3rem 2rem;
    }

    .prize-icon {
        font-size: 4rem;
    }

    .prize-breakdown {
        padding: 2rem;
    }

    .prize-motivation {
        grid-template-columns: 1fr;
    }

    .floating-trophy,
    .floating-coin {
        display: none;
    }

    .prize-amount {
        font-size: 3rem;
    }

    .attraction-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .attraction-content h2 {
        font-size: 1.8rem;
    }

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

    .registration-cards {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-instagram {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .instagram-text {
        font-size: 1rem;
    }
    
    .instagram-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .subtitle {
        font-size: 1.1rem;
    }

    .event-card,
    .about-card,
    .registration-card {
        padding: 1.5rem;
    }

    .attraction-card {
        padding: 1.5rem;
    }

    .attraction-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .countdown-container {
        gap: 0.3rem;
        padding: 1rem 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.8rem;
    }

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

    .countdown-label {
        font-size: 0.6rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

    .theme-toggle {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .qr-code {
        width: 200px;
        height: 200px;
    }

    .highlight-card.mega {
        grid-column: span 1;
    }

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

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

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .highlight-card,
    .timeline-content,
    .fun-item {
        padding: 1.5rem;
    }

    .urgency-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    .reg-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}
