/* ==========================================
   AURELION 2026 - Premium Hackathon Website
   Design System & Styles
   ========================================== */

/* ==========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
    /* Color Palette - VIBRANT & FUN */
    /* Orange-Coral Color Palette */
    --color-orange: #ff6b35;
    --color-coral: #ff8c42;
    --color-peach: #ffa552;
    --color-yellow: #ffb861;
    --color-cream: #ffd280;
    --color-orange-light: #ffa552;
    --color-orange-dark: #ff6b35;

    /* Base Colors */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Backgrounds */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #15151f;
    --color-bg-tertiary: #1a1a24;

    /* Text */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #a0a0a0;

    /* Accents */
    --color-accent: var(--color-orange);
    --color-accent-hover: var(--color-coral);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
    --gradient-secondary: linear-gradient(135deg, var(--color-coral), var(--color-peach));
    --gradient-text: linear-gradient(135deg, #ff6b35 0%, #ff8c42 25%, #ffa552 50%, #ffb861 75%, #ffd280 100%);

    /* Glass Effect - VIBRANT */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: rgba(0, 0, 0, 0.3);

    /* Typography - Fun Stack */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-subheading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-serif: 'Playfair Display', serif;

    /* Spacing - Professional */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Border Radius - Rounded & Soft */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Transitions - Smooth */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.25s ease-out;
    --transition-slow: 0.4s ease-out;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.4);
}

/* Light Theme */
body.light-theme {
    --color-bg-primary: #f8fafc;
    --color-bg-secondary: #f1f5f9;
    --color-bg-tertiary: #e2e8f0;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.05);

    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(4rem, 14vw, 8rem);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-subheading);
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   LAYOUT & CONTAINER
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* More transparent */
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-year {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.theme-toggle svg {
    position: absolute;
    transition: all var(--transition-normal);
}

.sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.light-theme .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.light-theme .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 140, 66, 0.3);
    border: 2px solid rgba(255, 200, 150, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6), 0 0 50px rgba(255, 140, 66, 0.4);
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4),
            0 0 40px rgba(255, 140, 66, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6),
            0 0 60px rgba(255, 140, 66, 0.5);
    }
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--color-text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-arrow {
    transition: var(--transition-fast);
    margin-left: 0.5rem;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ==========================================
   GLASS CARD EFFECT
   ========================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 160px;
}

/* Decorative Geometric Shapes - CSS Only */
.hero::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-coral));
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: float-slow 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: float-slow 18s infinite ease-in-out 3s;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay to darken video slightly for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 15, 0.3) 0%,
            rgba(10, 10, 15, 0.4) 50%,
            rgba(10, 10, 15, 0.6) 100%);
}

/* Hide unused aurora elements */
.gradient-orb,
.space-container {
    display: none;
}

@keyframes auroraPillar1 {

    0%,
    100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(20px) scaleX(1.3);
        opacity: 0.9;
    }
}

@keyframes auroraPillar2 {

    0%,
    100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.75;
    }

    33% {
        transform: translateX(-30px) scaleX(1.4);
        opacity: 0.9;
    }

    66% {
        transform: translateX(15px) scaleX(0.9);
        opacity: 0.65;
    }
}

@keyframes auroraPillar3 {

    0%,
    100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-25px) scaleX(1.2);
        opacity: 0.55;
    }
}


@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-md);
    color: var(--color-orange);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
    animation: none !important;
    transform: none !important;
}

.hero-title {
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
    filter: drop-shadow(0 0 30px rgba(255, 140, 66, 0.6)) drop-shadow(0 0 60px rgba(255, 107, 53, 0.4));
}

/* Gothic Logo Text Style - High Contrast Version */
.logo-text-gothic {
    font-family: 'Cinzel Decorative', 'Times New Roman', serif;
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 900;
    display: block;
    letter-spacing: 0.05em;
    line-height: 0.9;
    /* High contrast - solid white/cream color */
    color: #f5f0e6;
    -webkit-text-fill-color: #f5f0e6;
    /* Strong 3D dark purple extrusion for depth and visibility */
    text-shadow:
        1px 1px 0 #2d1b4e,
        2px 2px 0 #261748,
        3px 3px 0 #1f1340,
        4px 4px 0 #180f38,
        5px 5px 0 #110b30,
        6px 6px 0 #0a0728,
        7px 7px 0 #050420,
        8px 8px 20px rgba(0, 0, 0, 0.9);
    /* Stretched vertical appearance */
    transform: scaleY(1.2);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Year text styling */
.year-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    display: block;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.5));
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.6s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    font-style: italic;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    /* More transparent background */
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.02));
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
}

.info-icon {
    font-size: 1.5rem;
}

.info-label {
    font-size: 0.85rem;
    /* 3D effect like AURELION logo */
    color: #ff8c00 !important;
    -webkit-text-fill-color: #ff8c00 !important;
    background: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Orbitron', sans-serif;
    /* 3D extrusion effect */
    text-shadow:
        1px 1px 0 #cc3300,
        2px 2px 0 #aa2200,
        3px 3px 0 #881100,
        0 0 10px rgba(255, 140, 0, 0.4);
}

.info-value {
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 1s backwards;
}

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

.countdown-item {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, rgba(50, 45, 55, 0.5), rgba(40, 35, 45, 0.4));
    border: 1px solid rgba(255, 140, 66, 0.25);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(25px);
    min-width: 90px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(255, 140, 66, 0.45);
    background: linear-gradient(145deg, rgba(60, 55, 65, 0.55), rgba(50, 45, 55, 0.45));
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 107, 53, 0.3),
        0 0 80px rgba(255, 140, 66, 0.15);
}

.countdown-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #ff8c42, #ffa552, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.4));
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 200, 150, 0.9);
    margin-top: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 2rem;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
}

.about-grid h3 {
    margin-bottom: var(--spacing-sm);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-item p {
    margin: 0;
    font-size: 1rem;
}

/* ==========================================
   MENTORS & JUDGES SECTION
   ========================================== */
.mentors-section {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.mentors-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mentors-grid {
        grid-template-columns: 1fr;
    }
}

.mentor-card {
    text-align: center;
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
}

.mentor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.mentor-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(var(--color-bg-primary), var(--color-bg-primary)) padding-box,
        linear-gradient(135deg, var(--color-orange), var(--color-coral)) border-box;
    position: relative;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.mentor-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
}

.mentor-title {
    font-size: 0.95rem;
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mentor-org {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}

.mentor-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ==========================================
   TRACKS SECTION
   ========================================== */
.tracks {
    background: linear-gradient(180deg,
            var(--color-bg-secondary) 0%,
            rgba(255, 107, 53, 0.05) 30%,
            var(--color-bg-tertiary) 70%,
            var(--color-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Glowing Orb - Top Right */
.tracks::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 66, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}

/* Glowing Orb - Bottom Left */
.tracks::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.25) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.track-card {
    text-align: center;
    cursor: pointer;
}

.track-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: var(--transition-normal);
    color: var(--color-accent);
}

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

.track-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.track-card p {
    font-size: 0.95rem;
}

/* ==========================================
   PARTICIPATION SECTION
   ========================================== */
.participation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.participation-card h3 {
    margin-bottom: var(--spacing-md);
}

.participation-list {
    list-style: none;
}

.participation-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.list-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--color-orange-light);
}

a {
    text-decoration: none;
    color: var(--color-accent);
}

/* Gradient Text Effect with Tech Animation */
.gradient-text {
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffa552, #ffb861, #ff6b35) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline-block;
    animation: gradientFlow 3s ease-in-out infinite;
}

/* Hero title - 3D EXTRUDED ORANGE TEXT like reference */
.hero-title .gradient-text {
    position: relative;
    /* Bright orange color */
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ff8c00 !important;
    color: #ff8c00 !important;
    animation: none;
    filter: none;
    /* 3D extrusion effect - stacked shadows for depth */
    text-shadow:
        /* Dark red 3D extrusion layers */
        1px 1px 0 #cc3300,
        2px 2px 0 #cc3300,
        3px 3px 0 #aa2200,
        4px 4px 0 #aa2200,
        5px 5px 0 #881100,
        6px 6px 0 #881100,
        7px 7px 0 #660000,
        8px 8px 0 #660000,
        /* Subtle glow */
        0 0 20px rgba(255, 140, 0, 0.5);
}

/* Pseudo-elements removed to eliminate glitch lines */

/* ::after pseudo-element removed */

/* Gradient flow animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* More intense glitch animations */
@keyframes textGlitch {

    0%,
    85%,
    100% {
        transform: translate(0) skewX(0);
    }

    86% {
        transform: translate(-4px, 2px) skewX(-2deg);
    }

    88% {
        transform: translate(4px, -2px) skewX(2deg);
    }

    90% {
        transform: translate(-3px, -2px) skewX(-1deg);
    }

    92% {
        transform: translate(3px, 2px) skewX(1deg);
    }

    94% {
        transform: translate(-2px, 1px) skewX(-0.5deg);
    }

    96% {
        transform: translate(2px, -1px) skewX(0.5deg);
    }
}

@keyframes glitchTop {

    0%,
    80%,
    100% {
        transform: translate(0);
    }

    82% {
        transform: translate(4px, 0);
    }

    86% {
        transform: translate(-4px, 0);
    }

    90% {
        transform: translate(3px, 0);
    }

    94% {
        transform: translate(-2px, 0);
    }
}

@keyframes glitchBottom {

    0%,
    78%,
    100% {
        transform: translate(0);
    }

    80% {
        transform: translate(-4px, 0);
    }

    84% {
        transform: translate(4px, 0);
    }

    88% {
        transform: translate(-3px, 0);
    }

    92% {
        transform: translate(2px, 0);
    }
}

.participation-list span:last-child {
    color: var(--color-text-secondary);
}

.coordinator {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--glass-border);
}

.coordinator:last-child {
    border-bottom: none;
}

/* ==========================================
   TIMELINE SECTION
   ========================================== */
.timeline-section {
    background: linear-gradient(180deg,
            var(--color-bg-primary) 0%,
            rgba(255, 107, 53, 0.03) 20%,
            rgba(255, 140, 66, 0.05) 50%,
            rgba(255, 107, 53, 0.03) 80%,
            var(--color-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle glowing accent line */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 107, 53, 0.3) 20%,
            rgba(255, 140, 66, 0.5) 50%,
            rgba(255, 107, 53, 0.3) 80%,
            transparent 100%);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-orange-dark), var(--color-orange-light));
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 30px);
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-orange-dark);
    border: 4px solid var(--color-bg-secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.3);
    /* Adjusted for orange */
    z-index: 2;
}

.timeline-content {
    flex: 1;
}

.timeline-time {
    color: var(--color-orange-light);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    font-size: 0.95rem;
}

/* ==========================================
   REGISTRATION SECTION
   ========================================== */
.register {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 200, 0, 0.1));
    /* Adjusted for orange */
}

.register-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-2xl);
}

.register-content h2 {
    margin-bottom: var(--spacing-md);
}

.register-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.register-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.detail-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.detail-value {
    font-weight: 600;
    color: var(--color-text-primary);
}

.register-note {
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-orange-light);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-normal);
    color: var(--color-orange-light);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.contact-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-orange-light);
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.org-divider {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-orange-light);
    margin: var(--spacing-sm) 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-text-primary);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        border-top: 1px solid var(--glass-border);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-info {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .countdown {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

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

    .register-details {
        flex-direction: column;
        text-align: center;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .glass-card {
        padding: var(--spacing-md);
    }

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

/* ==========================================
   ADVANCED ANIMATIONS & EFFECTS
   ========================================== */

/* Card Swipe Animation */
@keyframes swipeIn {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-15deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes swipeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(15deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

/* Staggered Animations for Cards */
.about-grid .glass-card,
.tracks-grid .track-card,
.highlights-grid .highlight-item {
    animation: swipeIn 0.6s ease backwards;
}

.about-grid .glass-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-grid .glass-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-grid .glass-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tracks-grid .track-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tracks-grid .track-card:nth-child(2) {
    animation-delay: 0.15s;
}

.tracks-grid .track-card:nth-child(3) {
    animation-delay: 0.2s;
}

.tracks-grid .track-card:nth-child(4) {
    animation-delay: 0.25s;
}

.tracks-grid .track-card:nth-child(5) {
    animation-delay: 0.3s;
}

.tracks-grid .track-card:nth-child(6) {
    animation-delay: 0.35s;
}

.tracks-grid .track-card:nth-child(7) {
    animation-delay: 0.4s;
}

.tracks-grid .track-card:nth-child(8) {
    animation-delay: 0.45s;
}

.highlights-grid .highlight-item:nth-child(odd) {
    animation: swipeIn 0.6s ease backwards;
}

.highlights-grid .highlight-item:nth-child(even) {
    animation: swipeInRight 0.6s ease backwards;
}

.highlights-grid .highlight-item:nth-child(1) {
    animation-delay: 0.1s;
}

.highlights-grid .highlight-item:nth-child(2) {
    animation-delay: 0.2s;
}

.highlights-grid .highlight-item:nth-child(3) {
    animation-delay: 0.3s;
}

.highlights-grid .highlight-item:nth-child(4) {
    animation-delay: 0.4s;
}

.highlights-grid .highlight-item:nth-child(5) {
    animation-delay: 0.5s;
}

.highlights-grid .highlight-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Pulse Animation for Icons - FUN! */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.card-icon,
.track-icon,
.highlight-icon {
    animation: pulse 2.5s ease-in-out infinite;
}

.card-icon {
    animation-delay: 0s;
}

.track-icon {
    animation-delay: 0.3s;
}

.highlight-icon {
    animation-delay: 0.6s;
}

/* Shimmer Effect for Gradient Text - VIBRANT */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--color-purple) 0%,
            var(--color-cyan) 25%,
            var(--color-pink) 50%,
            var(--color-cyan) 75%,
            var(--color-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Smooth Theme Transition */
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.glass-card,
.btn,
.nav-link,
section {
    transition: all 0.5s ease;
}

/* Loading Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-top-color: var(--color-cyan);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* Hover Glow Effects */
.glass-card:hover,
.btn-primary:hover,
.social-link:hover {
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3),
        0 0 60px rgba(255, 140, 66, 0.2);
}

/* Parallax Scroll Effect */
.parallax {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Slide In From Bottom */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: slideUpFade 0.8s ease backwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(9) {
    animation-delay: 0.9s;
}

.timeline-item:nth-child(10) {
    animation-delay: 1s;
}

/* Bounce Animation for CTAs - FUN! */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.btn-primary:hover {
    animation: bounce 0.5s ease;
}

/* Countdown animations removed for cleaner look */

/* Scale on Hover for Interactive Elements */
.info-item:hover,
.detail-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* FAQ Item Slide Animation */
.faq-item {
    animation: slideUpFade 0.5s ease backwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.45s;
}

/* Typewriter Effect for Hero Subtitle */
@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Gradient Border Animation */
@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan), var(--color-purple));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
    animation: borderGradient 3s ease infinite;
}

.glass-card:hover::before {
    opacity: 0.5;
}

/* Floating Animation for Badges - FUN */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-badge {
    animation: floating 3s ease-in-out infinite;
}

.badge-icon {
    animation: floating 2.5s ease-in-out infinite 0.3s;
}

/* Smooth Page Transitions */
@keyframes pageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: pageFade 0.5s ease;
}

/* Enhanced Shadow on Scroll */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Light Theme Specific Adjustments */
body.light-theme .gradient-orb {
    opacity: 0.3;
}

body.light-theme .glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .navbar {
    background: rgba(248, 250, 252, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Light theme hero adjustments */
body.light-theme .hero {
    background: linear-gradient(135deg, #fff5eb, #ffe4cc);
}

body.light-theme .hero-overlay {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 245, 235, 0.3) 50%,
            rgba(255, 235, 220, 0.5) 100%);
}

body.light-theme .info-item {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 130, 66, 0.4);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

body.light-theme .countdown-item {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 130, 66, 0.4);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

body.light-theme .hero-badge {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

body.light-theme .hero-title,
body.light-theme .hero-subtitle,
body.light-theme .hero-tagline {
    color: #1a1a1a;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

body.light-theme .info-label {
    color: #666;
}

body.light-theme .info-value,
body.light-theme .countdown-label {
    color: #1a1a1a;
}

/* 3D Card Effect */
.glass-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.glass-card:hover {
    transform: translateY(-8px) rotateX(2deg);
}

/* Ripple Click Effect Enhancement */
@keyframes rippleExpand {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ==========================================
   TERMINAL CARD COMPONENT
   ========================================== */
.terminal-section {
    background: var(--color-bg-primary);
    position: relative;
}

.terminal-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.card {
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    background-color: rgba(217, 217, 217, 0.05);
    backdrop-filter: blur(8px);
    min-width: 344px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    /* Always visible orange glow */
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2),
        0 0 40px rgba(255, 140, 66, 0.1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 140, 66, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
}

.wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
    border: 0.5px solid #525252;
    border-radius: 8px;
    overflow: hidden;
}

.terminal {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 40px;
    padding-inline: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #202425;
}

.title {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 2.5rem;
    user-select: none;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #8e8e8e;
    margin: 0;
}

.title>svg {
    height: 18px;
    width: 18px;
    margin-top: 2px;
    color: var(--color-cyan);
}

.copy_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border: 0.65px solid #c1c2c5;
    margin-left: auto;
    border-radius: 6px;
    background-color: #202425;
    color: #8e8e8e;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy_toggle:hover {
    background-color: #2a2d2e;
    color: var(--color-orange);
}

.copy_toggle>svg {
    width: 20px;
    height: 20px;
}

.copy_toggle:active>svg>path,
.copy_toggle:focus-within>svg>path {
    animation: clipboard-check 500ms linear forwards;
}

.body {
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow-x: auto;
    padding: 1rem;
    line-height: 19px;
    color: white;
    background-color: black;
    white-space: nowrap;
}

.pre {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-wrap: nowrap;
    white-space: pre;
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
}

.pre code:nth-child(1) {
    color: #575757;
}

.pre code:nth-child(2) {
    color: var(--color-pink);
}

.cmd {
    height: 19px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 0;
}

.cmd::before {
    content: attr(data-cmd);
    position: relative;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    animation: inputs 8s steps(22) infinite;
}

.cmd::after {
    content: "";
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    border-right: 0.15em solid var(--color-pink);
    animation: cursor 0.5s step-end infinite alternate, blinking 0.5s infinite;
}

@keyframes blinking {

    20%,
    80% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0);
    }
}

@keyframes cursor {
    50% {
        border-right-color: transparent;
    }
}

@keyframes inputs {

    0%,
    100% {
        width: 0;
    }

    10%,
    90% {
        width: 58px;
    }

    30%,
    70% {
        width: 215px;
        max-width: max-content;
    }
}

@keyframes clipboard-check {
    100% {
        color: #fff;
        d: path("M 9 5 H 7 a 2 2 0 0 0 -2 2 v 12 a 2 2 0 0 0 2 2 h 10 a 2 2 0 0 0 2 -2 V 7 a 2 2 0 0 0 -2 -2 h -2 M 9 5 a 2 2 0 0 0 2 2 h 2 a 2 2 0 0 0 2 -2 M 9 5 a 2 2 0 0 1 2 -2 h 2 a 2 2 0 0 1 2 2 m -6 9 l 2 2 l 4 -4");
    }
}

/* Responsive Terminal Cards */
@media (max-width: 768px) {
    .terminal-cards-grid {
        grid-template-columns: 1fr;
    }

    .card {
        min-width: unset;
    }
}

/* ==========================================
   EASTER EGG BUTTON & RETRO TV MODAL
   ========================================== */
.easter-egg-btn {
    background: linear-gradient(135deg, var(--color-orange), var(--color-coral));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.easter-egg-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* ==========================================
   ORGANIZERS & PARTNERS SECTION
   ========================================== */
.organizers {
    background: var(--color-bg-secondary);
    padding: var(--spacing-2xl) 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    align-items: stretch;
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    text-align: center;
    min-height: 220px;
    transition: all 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.partner-logo {
    max-width: 180px;
    max-height: 140px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-card:hover .partner-logo {
    transform: scale(1.1);
}

.ieee-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.partner-name {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .logo-card {
        padding: var(--spacing-sm);
        min-height: 120px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 80px;
    }

    .ieee-logo {
        height: 80px;
    }

    .ieee-logo svg {
        width: 100px;
        height: 35px;
    }

    .partner-name {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

.tv-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.tv-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tv-modal-content {
    position: relative;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tv-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tv-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Retro TV Styles (same as 404 page) */
.main_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30em;
    height: 30em;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5em;
}

.antenna {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #f27405;
    margin-bottom: -6em;
    z-index: -1;
}

.antenna_shadow {
    position: absolute;
    background-color: transparent;
    width: 50px;
    height: 56px;
    margin-left: 1.68em;
    border-radius: 45%;
    transform: rotate(140deg);
    border: 4px solid transparent;
    box-shadow: inset 0px 16px #a85103, inset 0px 16px 1px 1px #a85103;
}

.antenna::after {
    content: "";
    position: absolute;
    margin-top: -9.4em;
    margin-left: 0.4em;
    transform: rotate(-25deg);
    width: 1em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #f69e50;
}

.antenna::before {
    content: "";
    position: absolute;
    margin-top: 0.2em;
    margin-left: 1.25em;
    transform: rotate(-20deg);
    width: 1.5em;
    height: 0.8em;
    border-radius: 50%;
    background-color: #f69e50;
}

.a1 {
    position: relative;
    top: -102%;
    left: -130%;
    width: 12em;
    height: 5.5em;
    border-radius: 50px;
    background-image: linear-gradient(#171717, #171717, #353535, #353535, #171717);
    transform: rotate(-29deg);
    clip-path: polygon(50% 0%, 49% 100%, 52% 100%);
}

.a1d {
    position: relative;
    top: -211%;
    left: -35%;
    transform: rotate(45deg);
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
}

.a2 {
    position: relative;
    top: -210%;
    left: -10%;
    width: 12em;
    height: 4em;
    border-radius: 50px;
    background-image: linear-gradient(#171717, #171717, #353535, #353535, #171717);
    margin-right: 5em;
    clip-path: polygon(47% 0, 47% 0, 34% 34%, 54% 25%, 32% 100%, 29% 96%, 49% 32%, 30% 38%);
    transform: rotate(-8deg);
}

.a2d {
    position: relative;
    top: -294%;
    left: 94%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
}

.notfound_text {
    background-color: black;
    padding: 0.3em 0.5em;
    font-size: 0.75em;
    color: white;
    border-radius: 5px;
    z-index: 10;
}

.tv {
    width: 17em;
    height: 9em;
    margin-top: 3em;
    border-radius: 15px;
    background-color: #d36604;
    display: flex;
    justify-content: center;
    border: 2px solid #1d0e01;
    box-shadow: inset 0.2em 0.2em #e69635;
}

.display_div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 3.5px 3.5px 0px #e69635;
}

.screen_out {
    width: auto;
    height: auto;
    border-radius: 10px;
}

.screen_out1 {
    width: 11em;
    height: 7.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.screen {
    width: 13em;
    height: 7.85em;
    font-family: var(--font-mono);
    border: 2px solid #1d0e01;
    background: repeating-radial-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 50% 0/2500px 2500px,
        repeating-conic-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 60% 60%/2500px 2500px;
    background-blend-mode: difference;
    animation: tvStatic 0.2s infinite alternate;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
}

.screenM {
    width: 13em;
    height: 7.85em;
    position: relative;
    font-family: var(--font-mono);
    background: linear-gradient(to right, #002fc6 0%, #002bb2 14.29%, #3a3a3a 14.29%, #303030 28.57%, #ff0afe 28.57%, #f500f4 42.86%, #6c6c6c 42.86%, #626262 57.14%, #0affd9 57.14%, #00f5ce 71.43%, #3a3a3a 71.43%, #303030 85.71%, white 85.71%, #fafafa 100%);
    border-radius: 10px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
    overflow: hidden;
}

.screenM:before,
.screenM:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
}

.screenM:before {
    top: 0;
    height: 68.48%;
    background: linear-gradient(to right, white 0%, #fafafa 14.29%, #ffe60a 14.29%, #f5dc00 28.57%, #0affd9 28.57%, #00f5ce 42.86%, #10ea00 42.86%, #0ed600 57.14%, #ff0afe 57.14%, #f500f4 71.43%, #ed0014 71.43%, #d90012 85.71%, #002fc6 85.71%, #002bb2 100%);
}

.screenM:after {
    bottom: 0;
    height: 21.74%;
    background: linear-gradient(to right, #006c6b 0%, #005857 16.67%, white 16.67%, #fafafa 33.33%, #001b75 33.33%, #001761 50%, #6c6c6c 50%, #626262 66.67%, #929292 66.67%, #888888 83.33%, #3a3a3a 83.33%, #303030 100%);
}

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

.lines {
    display: flex;
    column-gap: 0.1em;
    align-self: flex-end;
}

.line1,
.line3 {
    width: 2px;
    height: 0.5em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
    margin-top: 0.5em;
}

.line2 {
    width: 2px;
    height: 1em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
}

.buttons_div {
    width: 4.25em;
    height: 8em;
    background-color: #e69635;
    border: 2px solid #1d0e01;
    padding: 0.6em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 0.75em;
    box-shadow: 3px 3px 0px #e69635;
}

.b1,
.b2 {
    width: 1.65em;
    height: 1.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow: inset 2px 2px 1px #b49577, -2px 0px #513721, -2px 0px 0px 1px black;
}

.b1::before {
    content: "";
    position: absolute;
    margin-top: 1em;
    margin-left: 0.5em;
    transform: rotate(47deg);
    width: 0.1em;
    height: 0.4em;
    background-color: #000;
}

.b1::after {
    content: "";
    position: absolute;
    margin-top: 0.9em;
    margin-left: 0.8em;
    transform: rotate(47deg);
    width: 0.1em;
    height: 0.55em;
    background-color: #000;
}

.b1 div {
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000;
}

.b2::before {
    content: "";
    position: absolute;
    margin-top: 1.05em;
    margin-left: 0.8em;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 0.4em;
    background-color: #000;
}

.b2::after {
    content: "";
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000;
}

.speakers {
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
}

.speakers .g1 {
    display: flex;
    column-gap: 0.25em;
}

.speakers .g1 .g11,
.speakers .g1 .g12,
.speakers .g1 .g13 {
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow: inset 1.25px 1.25px 1px #b49577;
}

.speakers .g {
    width: auto;
    height: 2px;
    background-color: #171717;
}

.bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8.7em;
}

.base1,
.base2 {
    height: 1em;
    width: 2em;
    border: 2px solid #171717;
    background-color: #4d4d4d;
    margin-top: -0.15em;
    z-index: -1;
}

.base3 {
    position: absolute;
    height: 0.15em;
    width: 17.5em;
    background-color: #171717;
    margin-top: 0.8em;
}

.text_404 {
    position: absolute;
    display: flex;
    column-gap: 6em;
    z-index: -5;
    margin-bottom: 2em;
    opacity: 0.5;
    font-family: var(--font-mono);
}

.text_4041,
.text_4042,
.text_4043 {
    transform: scaleY(24.5) scaleX(9);
}

@media only screen and (max-width: 1024px) {
    .screenM {
        display: flex;
    }

    .screen {
        display: none;
    }
}

@media only screen and (min-width: 1025px) {
    .screen {
        display: flex;
    }

    .screenM {
        display: none;
    }
}

@media (max-width: 600px) {
    .main_wrapper {
        width: 95vw;
        height: auto;
    }

    .tv-close-btn {
        top: -50px;
    }
}

/* ==========================================
   ROTATING EARTH ANIMATION
   ========================================== */
.space-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.section-banner {
    height: 250px;
    width: 250px;
    position: relative;
    bottom: 0px;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            #1a0f0a 0%,
            #2a1f1a 25%,
            #1f170f 50%,
            #2e2318 75%,
            #1a0f0a 100%);
    animation: codeRotate 20s linear infinite;
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.5),
        0 0 80px rgba(255, 140, 66, 0.3),
        inset -10px -10px 30px rgba(255, 107, 53, 0.4),
        inset 10px 10px 30px rgba(255, 182, 97, 0.3);
    overflow: hidden;
}

/* Binary code streams */
.section-banner::before {
    content: '01001000 01100001 01100011 01101011 01100001 01110100 01101000 01101111 01101110 00100001 01000001 01001001 00100000 01000011 01101111 01100100 01100101 00100000 01000100 01100101 01110110 01100101 01101100 01101111 01110000 01101101 01100101 01101110 01110100';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    font-family: var(--font-mono);
    font-size: 8px;
    color: rgba(255, 140, 66, 0.5);
    word-wrap: break-word;
    line-height: 12px;
    animation: scrollBinary 15s linear infinite;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.8);
}

/* Matrix-style grid */
.section-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 165, 82, 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 165, 82, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: gridPulse 3s ease-in-out infinite;
}

@keyframes codeRotate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        filter: hue-rotate(15deg);
    }
}

@keyframes scrollBinary {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100px) translateX(50px);
        opacity: 0.3;
    }
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.curved-corner-star {
    display: flex;
    position: relative;
}

#curved-corner-bottomleft,
#curved-corner-bottomright,
#curved-corner-topleft,
#curved-corner-topright {
    width: 4px;
    height: 5px;
    overflow: hidden;
    position: relative;
}

#curved-corner-bottomleft:before,
#curved-corner-bottomright:before,
#curved-corner-topleft:before,
#curved-corner-topright:before {
    content: "";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    border-radius: 50%;
}

#curved-corner-bottomleft:before {
    bottom: 0;
    left: 0;
    box-shadow: -5px 5px 0 0 white;
}

#curved-corner-bottomright:before {
    bottom: 0;
    right: 0;
    box-shadow: 5px 5px 0 0 white;
}

#curved-corner-topleft:before {
    top: 0;
    left: 0;
    box-shadow: -5px -5px 0 0 white;
}

#curved-corner-topright:before {
    top: 0;
    right: 0;
    box-shadow: 5px -5px 0 0 white;
}

@keyframes twinkling {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }
}

#star-1 {
    position: absolute;
    left: -20px;
    animation: twinkling 3s infinite;
}

#star-2 {
    position: absolute;
    left: -40px;
    top: 30px;
    animation: twinkling 2s infinite;
}

#star-3 {
    position: absolute;
    left: 350px;
    top: 90px;
    animation: twinkling 4s infinite;
}

#star-4 {
    position: absolute;
    left: 200px;
    top: 290px;
    animation: twinkling 3s infinite;
}

#star-5 {
    position: absolute;
    left: 50px;
    top: 270px;
    animation: twinkling 1.5s infinite;
}

#star-6 {
    position: absolute;
    left: 250px;
    top: -50px;
    animation: twinkling 4s infinite;
}

#star-7 {
    position: absolute;
    left: 290px;
    top: 60px;
    animation: twinkling 2s infinite;
}

/* Responsive Earth */
@media (max-width: 1024px) {
    .space-container {
        right: 5%;
        transform: translateY(-50%) scale(0.8);
    }
}

@media (max-width: 768px) {
    .space-container {
        display: none;
    }
}

/* ==========================================
   PRIZES SECTION
   ========================================== */
.prizes {
    background: linear-gradient(180deg,
            var(--color-bg-primary) 0%,
            rgba(255, 107, 53, 0.08) 30%,
            rgba(255, 140, 66, 0.05) 70%,
            var(--color-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.prizes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatOrb 12s ease-in-out infinite;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.prize-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 66, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffa552);
}

.prize-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
}

.prize-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.prize-card h3 {
    font-size: 1.1rem;
    font-family: var(--font-display);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.prize-value {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa552);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.prize-value .per-person {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.prize-tier {
    font-size: 0.9rem;
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.prize-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.prize-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-badge-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3));
    border-color: rgba(255, 215, 0, 0.6);
    color: #ffd700;
}

.prize-badge-special {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border-color: rgba(139, 92, 246, 0.6);
    color: #a855f7;
}

.prize-highlight {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.05));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.prize-highlight::before {
    background: linear-gradient(90deg, #ffd700, #ffb300, #ff9500);
}

.prize-special {
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.05));
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.prize-special::before {
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #ec4899);
}

.prize-main {
    border: 2px solid rgba(255, 107, 53, 0.6);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.08));
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
}

.prize-badge-main {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(255, 140, 66, 0.4));
    border-color: rgba(255, 107, 53, 0.7);
    color: #fff;
}

@media (max-width: 768px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }

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