/* ==========================================================================
   ADITYA 2K26 — THE SOLAR MANIA
   Styles — Dark Futuristic Solar Theme
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Core Palette — deep purple tones to match hero */
    --bg-primary: #07040e;
    --bg-secondary: #0c0818;
    --bg-card: rgba(14, 8, 30, 0.75);
    --bg-glass: rgba(18, 10, 35, 0.6);

    /* Solar Accents */
    --solar-yellow: #fbbf24;
    --solar-orange: #f97316;
    --solar-gold: #d4a017;
    --solar-red: #ef4444;
    --solar-glow: #fde68a;

    /* Cosmic Accents */
    --cosmic-purple: #7c3aed;
    --cosmic-blue: #3b82f6;
    --cosmic-cyan: #06b6d4;

    /* Text */
    --text-primary: #f0edf5;
    --text-secondary: #a8a0b8;
    --text-muted: #6b6080;

    /* Gradients */
    --gradient-solar: linear-gradient(135deg, var(--solar-yellow), var(--solar-orange), var(--solar-red));
    --gradient-cosmic: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    --gradient-gold: linear-gradient(135deg, #f6d365, #fda085);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Borders */
    --border-subtle: 1px solid rgba(200, 180, 255, 0.06);
    --border-glow: 1px solid rgba(251, 191, 36, 0.3);
    --border-solar: 1px solid rgba(251, 191, 36, 0.4);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--solar-yellow);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--solar-orange);
}

::selection {
    background: rgba(251, 191, 36, 0.3);
    color: #fff;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    z-index: 10;
}

.section-about,
.section-aditya,
.section-leadership,
.section-past-events,
.section-contact {
    background: var(--bg-primary);
}

.section-goal,
.section-patrons,
.section-events,
.section-timeline,
.section-sponsors {
    background: var(--bg-secondary);
}

/* Ambient glow on alternating sections */
.section-about {
    background: radial-gradient(ellipse at 20% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 60%), var(--bg-primary);
}
.section-goal {
    background: radial-gradient(ellipse at 80% 30%, rgba(124, 58, 237, 0.07) 0%, transparent 50%), var(--bg-secondary);
}
.section-aditya {
    background: radial-gradient(ellipse at 70% 60%, rgba(249, 115, 22, 0.06) 0%, transparent 50%), var(--bg-primary);
}
.section-events {
    background: radial-gradient(ellipse at 50% 40%, rgba(251, 191, 36, 0.07) 0%, transparent 55%), var(--bg-secondary);
}
.section-leadership {
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%), var(--bg-primary);
}


/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--solar-yellow);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-solar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-solar);
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.4),
                0 0 30px rgba(251, 191, 36, 0.15);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Section Dividers ---------- */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.section-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Starfield Canvas ---------- */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(7, 4, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200, 180, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-primary);
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--solar-yellow);
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-accent {
    background: var(--gradient-solar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    display: block;
    padding: 0.5rem 0.8rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--solar-yellow);
    background: rgba(251, 191, 36, 0.08);
}

.nav-cta {
    background: var(--gradient-solar) !important;
    color: var(--bg-primary) !important;
    -webkit-text-fill-color: var(--bg-primary);
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    border-radius: 100px;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
/* ---- Hero layout ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 5;
    background: linear-gradient(180deg,
        #07040e 0%,
        #0e0820 25%,
        #1c0f30 45%,
        #381540 58%,
        #5a1a3a 68%,
        #07040e 100%);
}

/* ---- Atmosphere: radial warm glow FROM the sun outward ---- */
.hero-atmos {
    position: absolute;
    left: 50%;
    bottom: 20vh;
    transform: translateX(-50%);
    width: 110vw;
    height: 70vh;
    background: radial-gradient(ellipse 50% 50% at 50% 90%,
        rgba(255, 140, 30, 0.55) 0%,
        rgba(220, 80, 20, 0.35) 15%,
        rgba(160, 45, 30, 0.2) 30%,
        rgba(100, 25, 40, 0.1) 50%,
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Sun ---- */
.hero-sun-wrap {
    position: absolute;
    left: 50%;
    bottom: calc(32vh - 55px);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.hero-sun-ball {
    width: clamp(90px, 12vw, 150px);
    height: clamp(90px, 12vw, 150px);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%,
        #fff8e1 0%,
        #ffe082 18%,
        #ffc107 35%,
        #ffab00 55%,
        #ff8f00 75%,
        #e65100 100%);
    box-shadow:
        0 0 20px 5px rgba(255, 200, 60, 0.9),
        0 0 50px 10px rgba(255, 160, 30, 0.5),
        0 0 100px 20px rgba(255, 120, 10, 0.3);
    animation: sun-pulse 5s ease-in-out infinite;
}

.hero-sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 35vw, 450px);
    height: clamp(220px, 35vw, 450px);
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 180, 50, 0.35) 0%,
        rgba(255, 120, 20, 0.15) 35%,
        transparent 65%);
    z-index: -1;
    animation: sun-glow-pulse 4s ease-in-out infinite;
}

/* ---- Planet — massive circle, only top arc shows ---- */
.hero-planet {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250vw;
    height: 250vw;
    border-radius: 50%;
    bottom: calc(-250vw + 32vh);
    background: radial-gradient(ellipse at 50% 0%,
        #160e22 0%,
        #0c0814 15%,
        #07040e 40%);
    box-shadow:
        0 0 0 2px rgba(255, 180, 50, 0.7),
        0 -8px 25px rgba(255, 150, 30, 0.5),
        0 -25px 60px rgba(255, 100, 10, 0.25),
        0 -50px 120px rgba(200, 60, 10, 0.12);
    z-index: 4;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 900px;
    margin-bottom: 8vh;
    margin-top: -20vh;
}

.hero-pre-title {
    font-family: var(--font-heading);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(220, 215, 235, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.title-main {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: clamp(4px, 1.5vw, 15px);
    color: #fff;
    text-shadow:
        0 0 30px rgba(255, 200, 100, 0.35),
        0 0 60px rgba(255, 180, 80, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.title-sub {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2.5vw, 1.6rem);
    letter-spacing: clamp(4px, 1.5vw, 12px);
    color: rgba(200, 195, 220, 0.85);
    font-weight: 400;
    margin-top: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.title-year {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: clamp(6px, 2vw, 20px);
    background: linear-gradient(90deg, #82b1ff, #ce93d8, #ffab91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.3rem;
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(220, 215, 230, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

/* Hero Bottom CTA — register + countdown stacked at bottom */
.hero-bottom-cta {
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-solar);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
    color: var(--bg-primary);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3),
                0 0 40px rgba(251, 191, 36, 0.15),
                0 0 80px rgba(249, 115, 22, 0.1);
    animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3),
                    0 0 40px rgba(251, 191, 36, 0.15),
                    0 0 80px rgba(249, 115, 22, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.5),
                    0 0 60px rgba(251, 191, 36, 0.25),
                    0 0 100px rgba(249, 115, 22, 0.15);
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}


/* Countdown Timer */
.countdown-timer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    z-index: 10;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: clamp(70px, 10vw, 100px);
    padding: clamp(0.8rem, 2vw, 1.2rem);
    background: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(255, 180, 80, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    animation: timer-glow 3s ease-in-out infinite;
}

@keyframes timer-glow {
    0%, 100% {
        border-color: rgba(255, 180, 80, 0.3);
        box-shadow: 0 0 8px rgba(255, 180, 80, 0.1);
    }
    50% {
        border-color: rgba(255, 180, 80, 0.6);
        box-shadow: 0 0 20px rgba(255, 180, 80, 0.2),
                    0 0 40px rgba(255, 140, 30, 0.1);
    }
}

.timer-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--solar-yellow);
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.timer-label {
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================================
   ABOUT SECTION
   ======================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(200, 150, 255, 0.2);
    transition: all var(--transition-smooth);
}

.image-frame:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
}

.image-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 4, 14, 0.6), transparent 50%);
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.stat-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--solar-yellow);
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--solar-orange);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--solar-yellow);
    font-weight: 500;
}

/* ========================================================================
   GOAL SECTION
   ======================================================================== */
.goal-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-card-main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.goal-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.goal-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    position: relative;
}

.goal-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(251, 191, 36, 0.15);
}

.goal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--solar-yellow);
    background: rgba(251, 191, 36, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
}

.goal-card-main .goal-icon {
    margin: 0 auto 1.2rem;
}

.goal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.goal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================================================
   ADITYA SECTION
   ======================================================================== */
.aditya-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.aditya-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mini Solar System */
.solar-system-mini {
    position: relative;
    width: 300px;
    height: 300px;
}

.mini-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff5cc, var(--solar-yellow), var(--solar-orange));
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.2);
    animation: sun-pulse 4s ease-in-out infinite;
}

.mini-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: orbit-rotate linear infinite;
}

.mini-orbit-1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-duration: 6s;
}

.mini-orbit-2 {
    width: 190px;
    height: 190px;
    margin: -95px 0 0 -95px;
    animation-duration: 10s;
    animation-direction: reverse;
}

.mini-orbit-3 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    animation-duration: 15s;
}

.mini-planet {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cosmic-cyan);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.mini-orbit-2 .mini-planet {
    width: 10px;
    height: 10px;
    background: var(--solar-yellow);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.mini-orbit-3 .mini-planet {
    width: 6px;
    height: 6px;
    background: var(--cosmic-purple);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.aditya-highlight {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(200, 150, 255, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    transition: all var(--transition-smooth);
}

.aditya-highlight:hover {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.1);
}

.aditya-highlight h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--solar-yellow);
    margin-bottom: 0.6rem;
}

.aditya-highlight h3 i {
    margin-right: 0.4rem;
}

.aditya-highlight p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.aditya-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.08);
    border-radius: var(--radius-sm);
    color: var(--solar-yellow);
    font-size: 1rem;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.detail-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================================================
   PATRONS SECTION
   ======================================================================== */
.patrons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.patron-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    animation: border-pulse-subtle 4s ease-in-out infinite;
}

.patron-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(251, 191, 36, 0.15);
}

.patron-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
}

.patron-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* Adjust positioning for specific patron images to prevent head cutoff */
.patron-card:nth-child(1) .patron-image img,
.patron-card:nth-child(2) .patron-image img,
.patron-card:nth-child(3) .patron-image img {
    object-position: center 20%;
}

.patron-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-solar);
    z-index: 0;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.5s ease;
}

.patron-card:hover .patron-glow {
    opacity: 0.8;
}

.patron-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.patron-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================================================
   LEADERSHIP SECTION
   ======================================================================== */
.leader-principal {
    margin-bottom: 3rem;
}

.leader-card-principal {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-card);
    border: 2px solid rgba(200, 150, 255, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    animation: border-pulse-subtle 5s ease-in-out infinite;
    transition: all var(--transition-smooth);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.08);
}

.leader-card-principal:hover {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.leader-card-principal .leader-image {
    position: relative;
    width: 140px;
    height: 140px;
    min-width: 140px;
    border-radius: 50%;
}

.leader-card-principal .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.leader-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-solar);
    z-index: 0;
    filter: blur(3px);
    animation: ring-rotate 8s linear infinite;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.leader-role {
    font-size: 0.9rem;
    color: var(--solar-yellow);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.leader-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Committee Grid */
.leaders-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.leaders-grid .leader-card {
    width: 170px;
    flex-shrink: 0;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    animation: border-pulse-subtle 5s ease-in-out infinite;
}

.leaders-grid .leader-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(251, 191, 36, 0.12);
}

.leaders-grid .leader-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.leaders-grid .leader-card:hover .leader-image {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.25);
}

.leaders-grid .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leaders-grid h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.leaders-grid p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ========================================================================
   EVENTS SECTION
   ======================================================================== */
.events-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.event-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    border: 2px solid rgba(200, 150, 255, 0.12);
    animation: border-glow 4s ease-in-out infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.event-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 35px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
    animation: none;
}

.event-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-smooth);
}

.event-card:hover .event-card-bg {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(7, 4, 14, 0.97) 0%,
        rgba(7, 4, 14, 0.8) 40%,
        rgba(7, 4, 14, 0.3) 100%);
}

.event-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.event-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    color: var(--solar-yellow);
    margin-bottom: 1rem;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.event-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.event-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.event-meta i {
    color: var(--solar-yellow);
    font-size: 0.75rem;
}

/* ========================================================================
   PRIZES SECTION
   ======================================================================== */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.prize-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    text-align: center;
}

.prize-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(251, 191, 36, 0.2);
}

.prize-event-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--solar-yellow);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prize-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.prize-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.prize-gold { border-color: rgba(255, 215, 0, 0.2); background: rgba(255, 215, 0, 0.03); }
.prize-silver { border-color: rgba(192, 192, 192, 0.15); background: rgba(192, 192, 192, 0.03); }
.prize-bronze { border-color: rgba(205, 127, 50, 0.15); background: rgba(205, 127, 50, 0.03); }

.prize-medal {
    font-size: 1.1rem;
}

.prize-gold .prize-medal { color: #ffd700; }
.prize-silver .prize-medal { color: #c0c0c0; }
.prize-bronze .prize-medal { color: #cd7f32; }

.prize-place {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
    text-align: left;
    margin-left: 0.8rem;
}

.prize-amount {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.prize-extras {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.prizes-total {
    text-align: center;
}

.total-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(200, 150, 255, 0.15);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.total-badge i {
    color: var(--solar-yellow);
    font-size: 1.3rem;
}

.total-badge strong {
    color: var(--solar-yellow);
    font-family: var(--font-display);
}

/* ========================================================================
   TIMELINE SECTION
   ======================================================================== */
.register-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(200, 150, 255, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.06);
}

.register-box:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.register-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--solar-yellow);
    margin-bottom: 0.8rem;
}

.register-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.reg-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
}

.reg-step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--solar-yellow);
}

/* Animated Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(200, 150, 255, 0.2), rgba(251, 191, 36, 0.2), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 2px solid rgba(251, 191, 36, 0.35);
    border-radius: 50%;
    color: var(--solar-yellow);
    font-size: 0.65rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.15);
    animation: dot-glow 3s ease-in-out infinite;
}

@keyframes dot-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(251, 191, 36, 0.15); }
    50% { box-shadow: 0 0 18px rgba(251, 191, 36, 0.35), 0 0 30px rgba(251, 191, 36, 0.1); }
}

.timeline-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.timeline-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateX(4px);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.timeline-card-highlight {
    border: 2px solid rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.03);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.08);
    animation: border-glow 4s ease-in-out infinite;
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--solar-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================================================
   PAST EVENTS / GALLERY
   ======================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 4, 14, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================================================
   SPONSORS SECTION
   ======================================================================== */
.sponsors-tiers {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sponsor-tier {
    text-align: center;
}

.sponsor-tier-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tier-title { color: var(--solar-yellow); }
.tier-gold { color: #ffd700; }
.tier-silver { color: #c0c0c0; }

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.sponsor-logo:hover {
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sponsor-logos-lg .sponsor-logo {
    width: 250px;
    height: 120px;
}

.sponsor-logos-md .sponsor-logo {
    width: 200px;
    height: 100px;
}

.sponsor-logos-sm .sponsor-logo {
    width: 160px;
    height: 80px;
}

.sponsor-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}

.sponsor-placeholder i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.sponsor-placeholder span {
    font-size: 0.75rem;
}

/* ========================================================================
   CONTACT SECTION
   ======================================================================== */
.section-contact {
    padding-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.08);
    border-radius: var(--radius-sm);
    color: var(--solar-yellow);
    font-size: 1rem;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--solar-yellow);
}

.social-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(200, 150, 255, 0.1);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--solar-yellow);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 450px;
    border: 2px solid rgba(200, 150, 255, 0.12);
}

.contact-map iframe {
    display: block;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
    position: relative;
    background: #06030c;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(200, 150, 255, 0.06);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: var(--gradient-solar);
    filter: blur(1px);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: var(--border-subtle);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--solar-yellow);
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--solar-yellow);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

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

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-solar);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

/* ========================================================================
   ANIMATIONS
   ======================================================================== */
@keyframes sun-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(251, 191, 36, 0.6), 0 0 120px rgba(249, 115, 22, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 0 80px rgba(251, 191, 36, 0.7), 0 0 160px rgba(249, 115, 22, 0.4); }
}

@keyframes sun-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes corona-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes flare-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

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

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

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4)); }
    50% { filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8)); }
}

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

@keyframes border-glow {
    0%, 100% {
        border-color: rgba(251, 191, 36, 0.15);
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.08);
    }
    50% {
        border-color: rgba(251, 191, 36, 0.45);
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.2),
                    0 0 50px rgba(251, 191, 36, 0.08),
                    inset 0 0 10px rgba(251, 191, 36, 0.03);
    }
}

@keyframes border-pulse-subtle {
    0%, 100% {
        box-shadow: 0 0 8px rgba(251, 191, 36, 0.08),
                    inset 0 0 8px rgba(251, 191, 36, 0.03);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.2),
                    0 0 40px rgba(251, 191, 36, 0.08),
                    inset 0 0 15px rgba(251, 191, 36, 0.05);
    }
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

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

    .aditya-content {
        grid-template-columns: 1fr;
    }

    .aditya-visual {
        order: -1;
    }

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

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

/* Tablets */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        background: rgba(7, 4, 14, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 5rem 1.5rem 2rem;
        gap: 0.3rem;
        transition: right var(--transition-smooth);
        z-index: 1000;
        overflow-y: auto;
        border-left: var(--border-subtle);
    }

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

    .nav-link {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .nav-cta {
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-bottom-cta {
        bottom: 130px;
    }

    .hero-content {
        margin-top: -10vh;
    }

    .countdown-timer {
        bottom: 15px;
        gap: 0.5rem;
    }

    .timer-box {
        min-width: 60px;
        padding: 0.6rem;
    }

    .hero-content {
        margin-bottom: 12vh;
    }

    .hero-sun-wrap {
        bottom: calc(32vh - 40px);
    }

    .hero-sun-ball {
        width: 80px;
        height: 80px;
    }

    .leader-card-principal {
        flex-direction: column;
        text-align: center;
    }

    .leaders-grid .leader-card {
        width: 140px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

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

    .event-card {
        min-height: 360px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
        margin: 0 auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .solar-panel {
        display: none;
    }

    .solar-system-mini {
        width: 220px;
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-pre-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

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

    .title-sub {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .title-year {
        font-size: 1.3rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.6rem 0.3rem;
    }

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

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

    .gallery-item-wide {
        grid-column: span 1;
    }

    .prize-tier {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .prize-place {
        text-align: center;
        margin-left: 0;
    }

    .register-steps {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-system-mini {
        width: 180px;
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links:last-child {
        grid-column: 1 / -1;
    }

    .leaders-grid .leader-card {
        width: calc(50% - 0.6rem);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Print */
@media print {
    #starfield,
    #particles,
    .hero-sun,
    .hero-orbits,
    .section-divider,
    .nav-toggle,
    .back-to-top,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}
