@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;500;700;900&display=swap');

:root {
    /* ------------------------------ */
    /* Design Tokens: "Digital Arena" */
    /* ------------------------------ */

    /* Palette: Electric Midnight */
    --color-bg-dark: #0a192f;
    --color-bg-darker: #020c1b;
    --color-surface: rgba(255, 255, 255, 0.05);
    --color-surface-hover: rgba(255, 255, 255, 0.1);

    --color-primary: #ccff00;
    /* Electric Lime */
    --color-primary-glow: rgba(204, 255, 0, 0.4);

    --color-secondary: #00f2ff;
    /* Cyan */
    --color-secondary-glow: rgba(0, 242, 255, 0.4);

    --color-text-main: #e6f1ff;
    --color-text-muted: #8892b0;
    --color-white: #ffffff;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-bg-darker) 0%, #112240 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;

    /* Animation */
    --transition-fast: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-smooth: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ------------------------------ */
/* Reset & Base */
/* ------------------------------ */

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

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -1px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

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

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

ul {
    list-style: none;
}

/* ------------------------------ */
/* Layout Utilities */
/* ------------------------------ */

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.flex {
    display: flex;
    gap: 1rem;
}

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

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

/* Spacing Helpers */
.section-py {
    padding: 6rem 0;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ------------------------------ */
/* Components using Design System */
/* ------------------------------ */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
    background-color: #d9ff33;
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-bg-darker);
}

.btn-live-score {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg-darker);
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-live-score:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 255, 0, 0.6);
    background: linear-gradient(45deg, #d9ff33, #33fff3);
}

/* Glass Card */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(204, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
    }
}

/* Header/Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-glow), var(--color-secondary-glow), transparent);
    opacity: 0.5;
}

.main-header.header-scrolled {
    background: rgba(10, 25, 47, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: transparent;
}

.main-header .container {
    max-width: 1400px;
    height: 100%;
}

/* Logo */
.main-header .logo {
    flex-shrink: 0;
}

.logo-link {
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary-glow);
}

/* Nav Links */
.main-header .auth-buttons {
    flex-shrink: 0;
    gap: 0.75rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.7;
    white-space: nowrap;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 8px var(--color-primary-glow);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Live Score Button Special Styling */
.live-score-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg-dark) !important;
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
    transition: all 0.3s ease !important;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.live-score-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.4);
    color: var(--color-bg-dark) !important;
}

.live-score-btn i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.live-score-btn::after {
    display: none !important;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
}

.hero-highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--color-primary);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-20deg);
}

/* Feature Cards (for Athletes/Parents) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Footer style */
.main-footer {
    background: var(--color-bg-darker);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* ------------------------------ */
/* Animations & Effects */
/* ------------------------------ */

/* Scroll Reveal Base */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

/* Continuous Animations */
@keyframes float-y {

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

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

@keyframes pulse-neon {
    0% {
        box-shadow: 0 0 5px var(--color-primary-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--color-primary-glow), 0 0 10px var(--color-primary);
    }

    100% {
        box-shadow: 0 0 5px var(--color-primary-glow);
    }
}

@keyframes bg-pan {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Utilities for animations */
.animate-float {
    animation: float-y 3s ease-in-out infinite;
}

/* ------------------------------ */
/* Elite UX Motion */
/* ------------------------------ */

/* 1. Hero Parallax Layers */
.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

/* 2. Card Deal Effect */
.card-perspective {
    perspective: 1000px;
}

.deal-card {
    opacity: 0;
    transform: translateY(100px) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom center;
}

.deal-card.is-visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Fanning rotation for cards 1, 2, 3 */
.deal-card.is-visible:nth-child(1) {
    transform: translateY(0) rotate(-2deg);
}

.deal-card.is-visible:nth-child(2) {
    transform: translateY(0) rotate(0deg) scale(1.05);
    z-index: 2;
}

.deal-card.is-visible:nth-child(3) {
    transform: translateY(0) rotate(2deg);
}

/* 3. Power Line (Process Section) */
.power-line-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-50%);
    z-index: 0;
}

.power-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 15px var(--color-primary);
    transition: width 0.1s linear;
}

/* Enhanced Hover for Cards */
.glass-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(204, 255, 0, 0.1);
    z-index: 10;
}

/* ---------------------------------------------------- */
/* NEW: Breadcrumbs                                     */
/* ---------------------------------------------------- */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 3;
    margin-top: var(--header-height);
}

.breadcrumbs a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ---------------------------------------------------- */
/* NEW: Athlete Journey Timeline                        */
/* ---------------------------------------------------- */
.journey-timeline {
    position: relative;
    padding: 2.5rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Horizontal connecting line through circle centers */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: calc(2.5rem + 28px);
    left: 28px;
    right: 28px;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    z-index: 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 80px;
    max-width: 160px;
}

.journey-step .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg-darker);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.journey-step:hover .step-icon {
    background: var(--color-primary);
    color: var(--color-bg-darker);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.journey-step h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-step p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Mobile: vertical line through circle centers */
@media (max-width: 768px) {
    .journey-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        gap: 0;
    }

    .journey-timeline::before {
        top: 28px;
        bottom: 28px;
        left: 28px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    }

    .journey-step {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        max-width: 100%;
        width: 100%;
        padding: 0.75rem 0;
    }

    .journey-step .step-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ---------------------------------------------------- */
/* NEW: Stats Counter Section                           */
/* ---------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------------------------------------------------- */
/* NEW: Scout Score Visual                              */
/* ---------------------------------------------------- */
.scout-score-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.score-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    animation: spin-score 3s linear infinite;
}

@keyframes spin-score {
    to { transform: rotate(360deg); }
}

.score-ring .score-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.score-ring .score-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ---------------------------------------------------- */
/* NEW: Competitive Loop Diagram                        */
/* ---------------------------------------------------- */
.loop-diagram {
    display: flex;
    align-items: center;
    justify-content: center;

/* ---------------------------------------------------- */
/* NEW: Google Translate Overrides                      */
/* ---------------------------------------------------- */
body { top: 0 !important; }
iframe.skiptranslate { display: none !important; visibility: hidden !important; }
#google_translate_element { display: none !important; }
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.loop-step {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.loop-step:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.1);
}

.loop-step i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.loop-step h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.loop-arrow {
    font-size: 1.5rem;
    color: var(--color-primary);
    opacity: 0.6;
}

@media (max-width: 576px) {
    .loop-diagram {
        flex-direction: column;
    }

    .loop-arrow {
        transform: rotate(90deg);
    }
}

/* Section Divider (between loop & prizes) */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.3), transparent);
}

.divider-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.divider-label i {
    font-size: 0.85rem;
}

/* ---------------------------------------------------- */
/* NEW: Enhanced Loop Journey (Events page)             */
/* ---------------------------------------------------- */
.loop-journey {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.loop-step-enhanced {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.2rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
}

.loop-step-enhanced:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(204, 255, 0, 0.1);
    transform: translateY(-6px);
}

.loop-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-bg-darker);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--color-primary-glow);
}

.loop-step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(204, 255, 0, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loop-step-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.loop-step-enhanced h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--color-white);
}

.loop-step-enhanced p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.loop-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    opacity: 0.4;
    padding-top: 2rem;
}

@media (max-width: 900px) {
    .loop-journey {
        gap: 1.5rem 0.5rem;
    }

    .loop-step-enhanced {
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    .loop-journey {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .loop-step-enhanced {
        max-width: 280px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .loop-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
}

/* Sports Kits Showcase Icons */
.kits-showcase {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2.5rem;
}

.kits-icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.kit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.kit-icon-item:hover {
    transform: translateY(-4px);
}

.kit-icon-item i {
    font-size: 1.8rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kit-icon-item:hover i {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(204, 255, 0, 0.06);
    box-shadow: 0 0 16px var(--color-primary-glow);
}

.kit-icon-item span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.kit-icon-item:hover span {
    color: var(--color-white);
}

@media (max-width: 576px) {
    .kits-icons-row {
        gap: 1rem 1.5rem;
    }

    .kit-icon-item i {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* NEW: Story Cards (stories page + homepage)           */
/* ---------------------------------------------------- */
.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.story-content {
    padding: 2rem;
}

.story-tag {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ---------------------------------------------------- */
/* NEW: Article Styles (for story pages)                */
/* ---------------------------------------------------- */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content h2 {
    color: var(--color-white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
}

.quote-block {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 2px solid var(--color-primary);
    padding: 2rem;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.highlight-box {
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Story accent color variants (set via data-accent on body) */
[data-accent="secondary"] .article-content h2 {
    border-left-color: var(--color-secondary);
}

[data-accent="secondary"] .quote-block {
    color: var(--color-secondary);
    border-left-color: var(--color-secondary);
}

[data-accent="green"] .article-content h2 {
    border-left-color: #4cd964;
}

[data-accent="green"] .quote-block {
    color: #4cd964;
    border-left-color: #4cd964;
}

[data-accent="green"] .highlight-box {
    background: rgba(76, 217, 100, 0.1);
    border-color: #4cd964;
}

[data-accent="green"] .highlight-box h3 {
    color: #4cd964;
}

/* Note box (used in story-lance) */
.note-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.note-box p {
    margin-bottom: 0;
    color: #ffc107;
    font-size: 0.95rem;
}

/* ---------------------------------------------------- */
/* NEW: Related Stories Grid                            */
/* ---------------------------------------------------- */
.related-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ---------------------------------------------------- */
/* NEW: 5-Column Enhanced Footer                        */
/* ---------------------------------------------------- */
.footer-grid-5 {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

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

@media (max-width: 576px) {
    .footer-grid-5 {
        grid-template-columns: 1fr;
        text-align: center !important;
    }
}

/* ---------------------------------------------------- */
/* NEW: Section Accent Background                       */
/* ---------------------------------------------------- */
.section-accent {
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.03) 0%, rgba(0, 242, 255, 0.03) 100%);
}

/* ---------------------------------------------------- */
/* NEW: Text Utilities                                  */
/* ---------------------------------------------------- */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

/* ---------------------------------------------------- */
/* NEW: Prize/Feature Grid Cards                        */
/* ---------------------------------------------------- */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.prize-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.prize-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

/* ---------------------------------------------------- */
/* NEW: Benefits Grid                                   */
/* ---------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-card .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(204, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.benefit-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------------------------------------------------- */
/* NEW: Mobile menu store badges                        */
/* ---------------------------------------------------- */
.mobile-store-badges {
    display: none;
}

@media (max-width: 768px) {
    .nav-links .mobile-store-badges {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-white);
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .main-header .container {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(2, 12, 27, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .nav-links a {
        font-size: 1.15rem;
        margin: 0.8rem 0;
        padding: 0.5rem 1.5rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(204, 255, 0, 0.08);
    }

    /* Adjust auth buttons on mobile */
    .auth-buttons {
        display: none !important;
    }
}

/* Responsive Layout overrides */

/* Footer Grid */
.footer-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center !important;
    }

    .footer-grid>div {
        margin-bottom: 2rem;
    }
}

/* General Layout Adjustments */
@media (max-width: 768px) {
    .hero-content>div {
        flex-direction: column;
        gap: 2rem !important;
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
        /* Override clamp for better control if needed */
    }

    .grid {
        gap: 1.5rem;
    }

    /* Ensure cards don't overflow */
    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #countdown-timer {
        padding: 1rem !important;
        width: 100%;
    }

    #countdown-timer>div:nth-child(2) {
        gap: 0.5rem !important;
        justify-content: space-between;
    }

    #days,
    #hours,
    #minutes,
    #seconds {
        font-size: 2rem !important;
    }

    .text-center>div:last-child {
        font-size: 0.6rem !important;
    }
}

/* Refactored Inline Styles & Grid Improvements */

.nav-links {
    display: flex;
    gap: 1.25rem;
}

/* Medium screens - hide store badges to give nav room */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .auth-buttons .store-badge-sm {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .auth-buttons {
        display: none !important;
    }
}

.talent-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

@media (max-width: 576px) {

    .talent-grid,
    .steps-grid,
    .card-grid {
        grid-template-columns: 1fr;
        /* Stack heavily on mobile */
        gap: 1.5rem;
    }

    /* Ensure sections following the sticky video have a background to create the shutter effect */
    #talent,
    #how-it-works,
    .main-footer {
        position: relative;
        z-index: 10;
        background-color: var(--color-bg-dark);
        /* Vital for the covering effect */
    }
}

/* ---------------------------------------------------- */
/* EVENTS SECTION (Premium Video Background)            */
/* ---------------------------------------------------- */
.events-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    padding: 6rem 0;
}

.events-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.3) blur(2px);
    /* Darker and slight blur for text pop */
    transform: scale(1.05);
    /* Avoid edge glitches */
}

.events-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.event-card {
    background: rgba(16, 32, 59, 0.4);
    /* Darker tinted glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Highlight top border */
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient Glow on Hover */
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(204, 255, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(16, 32, 59, 0.6);
    border-color: rgba(204, 255, 0, 0.5);
    /* Primary color border on hover */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.event-card-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(204, 255, 0, 0.2));
    transition: transform 0.4s ease;
}

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

.event-highlight {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.event-card:hover .event-highlight {
    transform: translateY(10px);
}

.event-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.event-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(230, 241, 255, 0.7);
    position: relative;
    z-index: 1;
}
/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Honeypot Field - Visually Hidden */
.hidden-access {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.success-message {
    color: var(--color-primary);
    font-weight: 600;
    padding: 1rem;
    background: rgba(204, 255, 0, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-primary);
    display: none;
    animation: fadeIn 0.5s ease;
}

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


/* Mobile Optimization */
@media (max-width: 480px) {
    .section-py {
        padding: 3rem 0; /* Reduce vertical padding */
    }

    .glass-card {
        padding: 1.25rem; /* Reduce card padding */
    }

    .form-input {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 0.8rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
    .hero-content {
        text-align: center;
    }
}

/* ---------------------------------------------------- */
/* STORE DOWNLOAD BADGES (Global)                       */
/* ---------------------------------------------------- */

/* Large badge (hero + footer) */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 170px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 255, 0, 0.2);
    color: var(--color-white);
}

.store-badge-apple {
    border-color: rgba(255, 255, 255, 0.25);
}

.store-badge-apple:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.store-badge-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.store-badge-sub {
    font-size: 0.65rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
    font-weight: 400;
}

.store-badge-name {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Row layout for badge groups */
.store-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

/* Small badge (header nav) */
.store-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.store-badge-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    opacity: 0;
    background: linear-gradient(135deg, var(--color-primary), #a8e600);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.store-badge-sm:hover {
    border-color: var(--color-primary);
    color: var(--color-bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--color-primary-glow);
}

.store-badge-sm:hover::before {
    opacity: 1;
}

.store-badge-sm.store-badge-apple::before {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
}

.store-badge-sm.store-badge-apple:hover {
    border-color: var(--color-white);
    color: var(--color-bg-darker);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .store-badges-row {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

/* ---------------------------------------------------- */
/* Olympic Dream Section                                */
/* ---------------------------------------------------- */
.olympic-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.olympic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.olympic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
}

.olympic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            var(--color-bg-darker) 0%,
            rgba(2, 12, 27, 0.85) 30%,
            rgba(2, 12, 27, 0.9) 70%,
            var(--color-bg-dark) 100%);
}

.olympic-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Badge */
.olympic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    color: #ffd700;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.olympic-badge i {
    font-size: 0.85rem;
}

/* Heading */
.olympic-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.olympic-gold {
    color: #ffd700;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.olympic-gold::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ffd700;
    opacity: 0.2;
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 4px;
}

.olympic-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-main);
    line-height: 1.7;
}

.olympic-subtitle em {
    color: #ffd700;
    font-style: normal;
    font-weight: 600;
}

/* Olympic Journey Path */
.olympic-path {
    position: relative;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding-left: 40px;
}

.olympic-path-line {
    position: absolute;
    top: 0;
    left: 19px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg,
            var(--color-primary),
            var(--color-secondary),
            #ffd700);
    border-radius: 3px;
    box-shadow: 0 0 12px var(--color-primary-glow);
}

.olympic-milestone {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
}

.milestone-dot {
    position: absolute;
    left: -28px;
    top: 1.6rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-bg-darker);
    border: 3px solid var(--color-primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.olympic-milestone:hover .milestone-dot {
    background: var(--color-primary);
    box-shadow: 0 0 16px var(--color-primary-glow);
}

.milestone-dot-gold {
    border-color: #ffd700;
    width: 26px;
    height: 26px;
    left: -31px;
    top: 1.4rem;
}

.olympic-milestone:hover .milestone-dot-gold {
    background: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.milestone-content {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: left;
    flex: 1;
    transition: all 0.3s ease;
}

.olympic-milestone:hover .milestone-content {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.milestone-content i {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    display: block;
}

.milestone-final .milestone-content i {
    color: #ffd700;
}

.milestone-content h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.milestone-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tricolor Bar */
.tricolor-bar {
    display: flex;
    height: 4px;
    border-radius: 4px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 12px rgba(255, 153, 51, 0.2);
}

.tricolor-saffron {
    flex: 1;
    background: #FF9933;
}

.tricolor-white {
    flex: 1;
    background: #FFFFFF;
}

.tricolor-green {
    flex: 1;
    background: #138808;
}

/* Quote */
.olympic-quote {
    max-width: 650px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid #ffd700;
    background: rgba(255, 215, 0, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: left;
}

.olympic-quote p {
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.olympic-quote cite {
    font-size: 0.8rem;
    color: #ffd700;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Olympic Stats */
.olympic-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.olympic-stat {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
}

.olympic-stat:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.olympic-stat-highlight {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.06);
}

.olympic-stat-highlight:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.olympic-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.olympic-stat-highlight .olympic-stat-number {
    font-size: 2.5rem;
}

.olympic-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .olympic-section {
        padding: 4rem 0;
    }

    .olympic-path {
        padding-left: 35px;
    }

    .olympic-path-line {
        left: 14px;
    }

    .milestone-dot {
        left: -28px;
        width: 16px;
        height: 16px;
    }

    .milestone-dot-gold {
        width: 22px;
        height: 22px;
        left: -31px;
    }

    .milestone-content {
        padding: 1.2rem;
    }

    .olympic-stats {
        gap: 1rem;
    }

    .olympic-stat {
        min-width: 130px;
        padding: 1.2rem 1rem;
    }

    .olympic-quote {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .olympic-stat {
        min-width: 100%;
    }
}
