/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Road to Momentum — night highway palette */
    --primary-color: #2a3544;
    --primary-dark: #0b0f14;
    --secondary-color: #e8a838;
    --accent-color: #5ec8ff;
    --text-primary: #e4eaf2;
    --text-secondary: #8b98ad;
    --text-light: #aab8cb;
    --text-on-card: #1c2433;
    --bg-primary: #0b0f14;
    --bg-secondary: #161c27;
    --bg-dark: #05070a;
    --surface-card: linear-gradient(180deg, #f0f5fa 0%, #dce4ef 100%);
    --surface-card-dark: #1e2633;
    --gradient-primary: linear-gradient(135deg, #5ec8ff 0%, #2d8fb8 40%, #e8a838 85%, #c77d1a 100%);
    --gradient-secondary: linear-gradient(135deg, #e8a838 0%, #ffcc66 100%);
    --gradient-accent: linear-gradient(135deg, #2d3848 0%, #171d28 100%);
    --lane-glow: rgba(253, 233, 169, 0.92);
    --sky-glow: rgba(94, 200, 255, 0.22);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 22px 50px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: auto; /* Restore default cursor */
}

/* Custom Cursor - DISABLED TO FIX FORM INTERACTIONS */
.custom-cursor {
    display: none; /* Hide custom cursor to fix form interactions */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-image {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    z-index: 10000;
    box-shadow: 0 0 15px rgba(94, 200, 255, 0.35);
    will-change: transform;
    cursor: none;
}

.cursor-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background-image: url('Assets/blue man no bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* Performance Optimizations - Smooth Animations */
* {
    /* Optimize all transitions for smoothness */
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth hover effects for interactive elements */
.faci-card,
.chair-card,
.ocvp-card,
.teamster-card,
.partner-showcase-card,
.btn-primary,
.btn-secondary,
.nav-menu a,
.hamburger,
.nav-logo {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Optimize GSAP animations */
.scroll-element {
    will-change: transform;
}

/* Smooth gradient animations */
.hero,
.register,
.oc-hero,
.memorial {
    animation-timing-function: ease-in-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth page transitions */
body {
    transition: opacity 0.3s ease-in-out;
}

/* Smooth section animations */
section {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Smooth card animations */
.card,
.faci-card,
.chair-card,
.ocvp-card,
.teamster-card,
.partner-showcase-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

/* Smooth button animations */
.btn-primary,
.btn-secondary,
.btn-partner {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background-color, box-shadow;
}

/* Smooth navigation animations */
.navbar {
    transition: all 0.3s ease-out;
}

.nav-menu a {
    transition: all 0.3s ease-out;
}

/* Smooth modal animations */
.modal {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth form animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease-out;
}

/* Smooth image animations */
img {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Show cursor on mobile with proper styling */
    .custom-cursor {
        display: block !important;
    }
    
    .cursor-image {
        width: 30px;
        height: 30px;
    }
    
    .cursor-image::before {
        width: 18px;
        height: 18px;
    }
    
    /* Use desktop animation speeds on mobile */
    * {
        transition-duration: initial !important;
        animation-duration: initial !important;
        transition-timing-function: initial !important;
    }
    
    /* Enable gradient animations on mobile */
    .hero,
    .register,
    .oc-hero,
    .memorial {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    /* Use desktop hover effects */
    .faci-card:hover,
    .chair-card:hover,
    .ocvp-card:hover,
    .teamster-card:hover,
    .partner-showcase-card:hover {
        transform: translateY(-5px) !important;
        transition: initial !important;
    }
    
    /* Use desktop button hover effects */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px) !important;
        transition: initial !important;
    }
    
    /* Ensure registration section is always visible with no animations */
    .register {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    .registration-form {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Optimize GSAP for mobile */
    .scroll-element {
        will-change: transform;
    }
    
    /* Keep backdrop filters but optimize */
    .navbar {
        backdrop-filter: blur(5px);
        background: rgba(8, 12, 18, 0.92);
    }
    
    /* Use desktop modal animations */
    .modal {
        transition: initial !important;
    }
    
    /* Use desktop particle animations */
    .memorial-particles .particle {
        animation-duration: initial !important;
    }
    
    /* Ensure hero particles are visible and animated on mobile */
    .floating-particles {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .floating-particles .particle {
        animation: floatParticle 8s linear infinite !important;
        animation-duration: 8s !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure all sections are visible */
    section {
        display: block !important;
        visibility: visible !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 12, 18, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(94, 200, 255, 0.18);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: none;
    pointer-events: auto;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    pointer-events: auto;
    cursor: none;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: none;
    pointer-events: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* ===== Road to Momentum — freeway hero ===== */
.hero.hero--road {
    background: radial-gradient(
            ellipse 130% 80% at 50% -15%,
            #0e1524 0%,
            #0a1220 52%,
            #080f1a 100%
        ),
        #090e18;
    animation: none;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    padding: 0;
}

/* Index home — full dynamic viewport; lane perspective anchored at bottom edge */
#home.hero--road {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
}

#home.hero--road .hero-road-perspective {
    perspective-origin: 50% 100%;
}

/* Full-height pavement underlay: strongest at viewport bottom so the lane clearly “starts” from the base */
#home.hero--road .hero-road-floor {
    left: 0;
    right: 0;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(40, 48, 60, 0.55) 0%,
            transparent 14%,
            transparent 86%,
            rgba(40, 48, 60, 0.55) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 26%,
            rgba(45, 53, 66, 0.18) 44%,
            rgba(45, 53, 66, 0.55) 62%,
            #2d3542 76%,
            #252c38 90%,
            #242b36 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(94, 200, 255, 0.12),
        inset 0 -1px 0 rgba(94, 200, 255, 0.06);
}

@media (min-width: 969px) {
    .hero.hero--road .hero-content.hero-content--circle-focus:not(.hero-content--cta-only) {
        transform: translateY(-2.5vh) translateX(calc(-1 * clamp(20px, 4.5vw, 80px)));
    }
}

.hero.hero--road .scroll-indicator .scroll-arrow {
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.hero-road-layers {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-road-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 118% 88% at 50% -24%, rgba(52, 98, 168, 0.22) 0%, transparent 56%),
        radial-gradient(ellipse 48% 32% at 90% 4%, rgba(232, 168, 56, 0.05) 0%, transparent 72%),
        linear-gradient(
            180deg,
            #03050f 0%,
            #0a1220 46%,
            #08101c 78%,
            #0c1524 100%
        );
}

/* Sparse stars + single soft band — calmer than a busy field */
.hero-road-stars {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        radial-gradient(ellipse 115% 5% at 50% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 88%),
        radial-gradient(1px 1px at 28% 9%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 71% 7%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1.25px 1.25px at 50% 5%, rgba(255, 250, 232, 0.55), transparent),
        radial-gradient(1px 1px at 14% 18%, rgba(120, 200, 255, 0.28), transparent),
        radial-gradient(1px 1px at 86% 14%, rgba(255, 255, 255, 0.25), transparent);
}

/* Distant horizon as one smooth glow (no hard “sun” disc) */
.hero-road-horizon {
    position: absolute;
    left: -18%;
    right: -18%;
    top: 12%;
    height: 58%;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 98% 32% at 50% 32%,
            rgba(252, 230, 190, 0.11) 0%,
            rgba(132, 190, 240, 0.07) 42%,
            transparent 74%
        );
    filter: blur(36px);
    opacity: 0.92;
}

/* Pavement-tint slab at the base — merges with lane so the hero never reads as “black void” under the car */
.hero-road-floor {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: 0;
    height: clamp(120px, 28vh, 380px);
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(42, 50, 62, 0.45) 0%,
            transparent 18%,
            transparent 82%,
            rgba(42, 50, 62, 0.45) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(45, 53, 66, 0.25) 22%,
            #2d3542 58%,
            #252c38 86%,
            #242b36 100%
        );
    box-shadow: inset 0 1px 0 rgba(94, 200, 255, 0.1);
}

.hero-road-perspective {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    isolation: isolate;
    perspective: 520px;
    perspective-origin: 50% 32%;
}

/* Lane — full hero height, no dark cropping at the bottom */
.hero-road-surface {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    clip-path: polygon(44.5% 0, 55.5% 0, 100% 100%, 0% 100%);
    background:
        linear-gradient(90deg, transparent 0%, rgba(120, 210, 255, 0.1) 50%, transparent 100%),
        linear-gradient(
            180deg,
            rgba(110, 210, 255, 0.14) 0%,
            rgba(94, 200, 255, 0.05) 8%,
            transparent 21%
        ),
        linear-gradient(
            180deg,
            #54606f 0%,
            #3f4958 22%,
            #2d3542 48%,
            #252c38 74%,
            #242b36 100%
        );
    box-shadow:
        inset 0 0 0 1px rgba(94, 200, 255, 0.28),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 26px 48px rgba(94, 200, 255, 0.06),
        inset 0 -36px 56px rgba(94, 200, 255, 0.06),
        inset 0 56px 64px rgba(0, 0, 0, 0.2),
        inset 40px 0 56px rgba(0, 0, 0, 0.14),
        inset -40px 0 56px rgba(0, 0, 0, 0.14);
    filter: drop-shadow(0 0 22px rgba(94, 200, 255, 0.22));
}

/* Shoulders — dark + one seam strip into lane */
.hero-road-shoulder {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 18%;
    opacity: 1;
}

.hero-road-shoulder--left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 82.5% 100%, 0% 100%);
    box-shadow: inset -32px 0 48px rgba(0, 0, 0, 0.42);
    background:
        linear-gradient(
            90deg,
            rgba(148, 200, 255, 0.08) 0%,
            transparent 18%
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 78%,
            rgba(94, 200, 255, 0.28) 96%,
            rgba(248, 200, 100, 0.14) 100%
        ),
        linear-gradient(180deg, #2e3846 0%, #222a35 40%, #1a212c 100%);
}

.hero-road-shoulder--right {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 17.5% 100%);
    box-shadow: inset 32px 0 48px rgba(0, 0, 0, 0.42);
    background:
        linear-gradient(
            270deg,
            rgba(148, 200, 255, 0.08) 0%,
            transparent 18%
        ),
        linear-gradient(
            270deg,
            transparent 0%,
            transparent 78%,
            rgba(94, 200, 255, 0.28) 96%,
            rgba(248, 200, 100, 0.14) 100%
        ),
        linear-gradient(180deg, #2e3846 0%, #222a35 40%, #1a212c 100%);
}

.hero-road-dashes {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: clamp(7px, 1vw, 12px);
    height: 100%;
    margin-left: calc(clamp(7px, 1vw, 12px) / -2);
    clip-path: polygon(32% 0, 68% 0, 55.5% 100%, 44.5% 100%);
    background: repeating-linear-gradient(
        to bottom,
        var(--lane-glow) 0 32px,
        transparent 32px 64px
    );
    background-position: 0 0;
    opacity: 0.93;
    animation: dashScroll 1.25s linear infinite;
    filter:
        drop-shadow(0 0 6px rgba(255, 224, 130, 0.38))
        drop-shadow(0 0 14px rgba(94, 200, 255, 0.14));
}

/* Car on lane (arcade racer read) */
.hero-road-car-wrap {
    position: absolute;
    left: 50%;
    bottom: calc(clamp(7%, 4.5vh, 13%) + 10%);
    z-index: 6;
    width: clamp(120px, 16vw, 200px);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-road-car {
    transform-origin: center bottom;
    transform: perspective(340px) rotateX(62deg);
    animation: heroCarCruise 2.4s ease-in-out infinite alternate;
    filter:
        drop-shadow(0 -4px 12px rgba(94, 200, 255, 0.55))
        drop-shadow(0 10px 0 rgba(0, 0, 0, 0.65));
}

.hero-road-car-svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

@keyframes heroCarCruise {
    from {
        transform: perspective(340px) rotateX(62deg) translateY(0);
    }
    to {
        transform: perspective(340px) rotateX(62deg) translateY(-7px);
    }
}

@media (max-width: 968px) {
    .hero-road-car-wrap {
        width: clamp(96px, 26vw, 150px);
        bottom: calc(clamp(16%, 10vh, 22%) + 10%);
    }
}

@keyframes dashScroll {
    to {
        background-position: 0 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-road-dashes {
        animation: none;
    }

    .hero-road-car {
        animation: none;
    }
}

/* ========= In-hero mini-game (full hero takeover) ========= */
.hero-road-entities {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
    display: none;
}

#home.hero--road.is-playing-game .hero-road-entities {
    display: block;
}

.hero-road-entity {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform, top, left, width, height;
}

/* Traffic cone — reads as roadside hardware, glued to pavement */
.hero-road-entity--cone {
    clip-path: polygon(50% 6%, 90% 100%, 50% 86%, 10% 100%);
    border-radius: 0;
    background:
        radial-gradient(circle at 40% 32%, rgba(255, 255, 255, 0.22) 0%, transparent 45%),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(0, 0, 0, 0.22) 100%
        ),
        linear-gradient(
            180deg,
            #ffa44a 0%,
            #ff6f1a 40%,
            #d04a08 74%,
            #3a2218 100%
        );
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.35),
        0 5px 0 rgba(36, 24, 20, 0.55),
        inset 0 3px 0 rgba(255, 255, 255, 0.18),
        inset 0 -8px 0 rgba(42, 30, 24, 0.45);
}

.hero-road-entity--cone::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 44%;
    height: 17%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.88) 0 7px,
        rgba(20, 20, 20, 0.88) 7px 14px,
        rgba(255, 255, 255, 0.88) 14px 21px
    );
    border-radius: 2px;
}

/* Reflective curb / jersey barrier strip */
.hero-road-entity--barrier {
    border-radius: 4px;
    background: repeating-linear-gradient(
        -14deg,
        #101820 0 9px,
        #fcd34d 9px 18px,
        #101820 18px 27px,
        #f59e0b 27px 36px,
        #101820 36px 45px
    );
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.42),
        0 5px 0 rgba(36, 30, 20, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Wooden crate obstacle */
.hero-road-entity--crate {
    border-radius: 5px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        linear-gradient(
            90deg,
            #5d4a3f 0%,
            #3e3229 42%,
            #2f261f 75%,
            #4a3930 100%
        );
    box-shadow:
        0 0 0 2px rgba(24, 20, 16, 0.75),
        0 6px 0 rgba(18, 14, 10, 0.55),
        inset 3px 3px 0 rgba(110, 90, 78, 0.35),
        inset -2px -2px 8px rgba(0, 0, 0, 0.42);
}

.hero-road-entity--crate::before,
.hero-road-entity--crate::after {
    content: '';
    position: absolute;
    background: rgba(24, 19, 15, 0.55);
    border-radius: 1px;
}

.hero-road-entity--crate::before {
    left: 6%;
    right: 6%;
    top: 33%;
    height: 11%;
}

.hero-road-entity--crate::after {
    top: 8%;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
}

.hero-road-entity--pickup {
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.9em;
    color: #fff;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
    line-height: 1;
}

.hero-road-entity--shield {
    background: radial-gradient(circle at 30% 30%, #5ec8ff, #1e4a6e);
    border: 2px solid rgba(232, 168, 56, 0.75);
}

.hero-road-entity--star {
    background: radial-gradient(circle at 30% 30%, #ffe9a8, #e8a838);
    color: #1a1408;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.hero-road-entity--slow {
    background: radial-gradient(circle at 30% 30%, #a8e0ff, #3d8eb8);
    border: 2px solid rgba(148, 205, 255, 0.6);
}

/* Finish venue — centered on lane vanishing strip inside .hero-road-perspective */
.hero-road-house {
    position: absolute;
    left: 50%;
    /* Horizon → mid-lane: tied to treadmill finish in road-game (--hlane 0 … 1) */
    top: calc(4% + var(--hlane, 0) * 36%);
    width: min(240px, 38vw);
    aspect-ratio: 220 / 268;
    height: auto;
    z-index: 7;
    display: none;
    pointer-events: none;
    transform-origin: 50% 93%;
    transform: translate(-50%, -56%) scale(var(--hs, 0.35));
    filter:
        drop-shadow(0 0 18px rgba(94, 200, 255, 0.18))
        drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55));
    transition: filter 0.2s ease;
}

.hero-road-house.is-visible {
    display: block;
}

.hero-road-house__glow {
    position: absolute;
    left: 50%;
    bottom: min(-4%, -0.5rem);
    width: min(120%, 320px);
    height: 42%;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse 50% 42% at 50% 32%,
        rgba(232, 168, 56, 0.28),
        rgba(94, 200, 255, 0.08) 45%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.88;
}

.hero-road-house-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

/* Car game-mode override (!important beats GSAP inline transforms + base rules) */
#home.hero--road .hero-road-car-wrap.hero-road-car-wrap--game {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(var(--gx, 0px), var(--gy, 0px)) scale(var(--gs, 1)) !important;
    transform-origin: 50% 100%;
    transition: none !important;
}

.hero-road-car-wrap.has-shield {
    filter:
        drop-shadow(0 0 14px rgba(94, 200, 255, 0.9))
        drop-shadow(0 -3px 10px rgba(94, 200, 255, 0.5));
}

/* Hide hero copy / chrome while playing (kept present for restore) */
#home.hero--road.is-playing-game .hero-content,
#home.hero--road.is-playing-game .hero-road-tagline,
#home.hero--road.is-playing-game .hero-road-cta,
#home.hero--road.is-playing-game .scroll-indicator,
#home.hero--road.is-playing-game .hero-game-hud,
#home.hero--road.is-playing-game .hero-front-glow {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Game UI — HUD top, panels centered, fills hero */
.hero-game-ui {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    display: none;
}

#home.hero--road.is-playing-game .hero-game-ui {
    display: block;
}

.hero-game-ui__hud {
    position: absolute;
    top: clamp(90px, 12vh, 118px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    align-items: center;
    padding: 10px 14px;
    background: rgba(8, 12, 22, 0.78);
    border: 1px solid rgba(94, 200, 255, 0.22);
    border-radius: 12px;
    color: rgba(248, 250, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    pointer-events: auto;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
    max-width: calc(100% - 24px);
}

.hero-game-ui__score,
.hero-game-ui__timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    min-width: 56px;
}

.hero-game-ui__label {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    color: rgba(232, 168, 56, 0.9);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hero-game-ui__value {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    color: #f5f9ff;
    letter-spacing: 0.05em;
}

.hero-game-ui__effect {
    font-size: 0.78rem;
    color: rgba(232, 168, 56, 0.95);
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-game-ui__exit {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 200, 255, 0.3);
    color: rgba(232, 240, 255, 0.88);
    font-family: inherit;
    font-size: 0.82rem;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-game-ui__exit:hover {
    background: rgba(232, 168, 56, 0.2);
    color: #fff;
}

.hero-game-ui__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    text-align: center;
    padding: clamp(18px, 3vw, 28px) clamp(22px, 4vw, 34px);
    background: linear-gradient(165deg, rgba(16, 22, 34, 0.94), rgba(6, 10, 20, 0.96));
    border: 1px solid rgba(94, 200, 255, 0.25);
    border-radius: 16px;
    max-width: min(420px, 90vw);
    box-shadow:
        0 0 0 1px rgba(232, 168, 56, 0.08),
        0 22px 50px rgba(0, 0, 0, 0.55);
    color: rgba(232, 240, 255, 0.92);
    font-family: 'Inter', sans-serif;
}

.hero-game-ui__panel h3 {
    margin: 0 0 0.55rem;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.55rem, 4vw, 2rem);
    letter-spacing: 0.06em;
    color: #f5f9ff;
}

.hero-game-ui__panel p {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-game-ui__banner {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: #ffe9a8;
    letter-spacing: 0.06em;
    margin: 0 0 0.25rem !important;
    text-shadow: 0 0 28px rgba(232, 168, 56, 0.3);
}

.hero-game-ui__panel--lose .hero-game-ui__banner {
    color: #ffb4b4;
    text-shadow: 0 0 28px rgba(200, 30, 50, 0.35);
}

.hero-game-ui__panel strong {
    color: #7ad4ff;
    font-weight: 700;
}

.hero-game-ui__panel kbd {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    margin: 0 0.1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 200, 255, 0.3);
    font-family: monospace;
    font-size: 0.72rem;
    color: #f5f9ff;
}

.hero-game-ui__hint {
    font-size: 0.78rem !important;
    color: rgba(200, 210, 226, 0.78);
    margin-bottom: 0.85rem !important;
}

.hero-game-ui__panel-btns {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.hero-game-ui__panel .btn-primary,
.hero-game-ui__panel .btn-secondary {
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
    opacity: 1;
    animation: none;
    justify-content: center;
}

@media (max-width: 640px) {
    .hero-game-ui__hud {
        gap: 10px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .hero-game-ui__effect {
        display: none;
    }

    .hero-game-ui__panel {
        padding: 18px 20px;
    }
}

/* Soft spotlights + depth behind headline + MC circle (sits above road, under content) */
.hero-front-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 58% 42% at 24% 42%,
            rgba(110, 205, 255, 0.09) 0%,
            rgba(70, 140, 205, 0.03) 50%,
            transparent 72%
        ),
        radial-gradient(
            ellipse 46% 48% at 78% 46%,
            rgba(240, 196, 120, 0.08) 0%,
            rgba(232, 168, 56, 0.025) 54%,
            transparent 74%
        ),
        radial-gradient(
            ellipse min(92vw, 920px) 55% at 50% 38%,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 62%
        );
}

.hero-front-glow::before,
.hero-front-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.72;
}

.hero-front-glow::before {
    width: min(68vw, 640px);
    height: min(52vh, 480px);
    left: clamp(-8%, -4vw, 0%);
    top: 42%;
    transform: translate(-5%, -50%);
    background: radial-gradient(
        closest-side circle,
        rgba(120, 210, 255, 0.28) 0%,
        rgba(60, 120, 180, 0.08) 55%,
        transparent 76%
    );
    animation: heroFrontGlowLeft 14s ease-in-out infinite alternate;
}

.hero-front-glow::after {
    width: min(54vw, 520px);
    height: min(50vh, 440px);
    right: clamp(-12%, -6vw, -2%);
    top: 44%;
    transform: translate(4%, -50%);
    background: radial-gradient(
        closest-side circle,
        rgba(255, 206, 120, 0.22) 0%,
        rgba(200, 130, 50, 0.06) 58%,
        transparent 78%
    );
    animation: heroFrontGlowRight 17s ease-in-out infinite alternate-reverse;
}

@keyframes heroFrontGlowLeft {
    0% {
        transform: translate(-5%, -50%) scale(1);
        opacity: 0.56;
    }
    100% {
        transform: translate(1%, -46%) scale(1.06);
        opacity: 0.74;
    }
}

@keyframes heroFrontGlowRight {
    0% {
        transform: translate(4%, -50%) scale(1);
        opacity: 0.52;
    }
    100% {
        transform: translate(-2%, -47%) scale(1.05);
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-front-glow::before,
    .hero-front-glow::after {
        animation: none;
        opacity: 0.62;
        transform: translate(-5%, -50%);
    }

    .hero-front-glow::after {
        transform: translate(4%, -50%);
    }
}

@media (max-width: 968px) {
    .hero-front-glow {
        background:
            radial-gradient(
                ellipse 92% 38% at 50% 32%,
                rgba(130, 210, 255, 0.12) 0%,
                transparent 66%
            ),
            radial-gradient(
                ellipse 70% 52% at 50% 68%,
                rgba(238, 190, 100, 0.1) 0%,
                transparent 72%
            );
    }

    .hero-front-glow::before {
        left: 50%;
        top: 30%;
        width: min(110vw, 520px);
        height: min(38vh, 320px);
        transform: translate(-55%, -50%);
        animation-name: heroFrontGlowLeftMb;
    }

    .hero-front-glow::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 26%;
        width: min(100vw, 480px);
        height: min(42vh, 360px);
        transform: translate(-45%, 0);
        animation-name: heroFrontGlowRightMb;
    }

    @keyframes heroFrontGlowLeftMb {
        0% {
            transform: translate(-55%, -50%) scale(1);
            opacity: 0.58;
        }
        100% {
            transform: translate(-52%, -48%) scale(1.05);
            opacity: 0.76;
        }
    }

    @keyframes heroFrontGlowRightMb {
        0% {
            transform: translate(-45%, 0) scale(1);
            opacity: 0.52;
        }
        100% {
            transform: translate(-48%, 2%) scale(1.04);
            opacity: 0.68;
        }
    }
}

@media (max-width: 968px) and (prefers-reduced-motion: reduce) {
    .hero-front-glow::before {
        transform: translate(-50%, -50%);
    }

    .hero-front-glow::after {
        transform: translate(-50%, 0);
    }
}

/* Top + corners only — avoid centered radial crushing the entire bottom rim (read as a black strip) */
.hero-road-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent min(42%, 200px)),
        radial-gradient(
            ellipse 118% 70% at 50% -35%,
            transparent 54%,
            rgba(0, 0, 0, 0.09) 100%
        ),
        radial-gradient(
            farthest-side at -6% -4%,
            rgba(0, 0, 0, 0.11) 0%,
            transparent 58%
        ),
        radial-gradient(
            farthest-side at 106% -4%,
            rgba(0, 0, 0, 0.11) 0%,
            transparent 58%
        ),
        radial-gradient(
            farthest-side at -4% 102%,
            rgba(0, 0, 0, 0.07) 0%,
            transparent 46%
        ),
        radial-gradient(
            farthest-side at 104% 102%,
            rgba(0, 0, 0, 0.07) 0%,
            transparent 46%
        ),
        radial-gradient(
            farthest-corner at 50% 118%,
            rgba(37, 44, 58, 0.35) 0%,
            transparent 42%
        );
}

/* Light arcade HUD + scanlines (game feel, stays behind hero copy) */
.hero-game-hud {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-game-hud::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.11) 3px,
        rgba(0, 0, 0, 0.11) 4px
    );
    opacity: 0.25;
}

.hero-game-hud__accent {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    background-color: transparent;
    --corner-cyan: rgba(94, 200, 255, 0.75);
    --corner-gold: rgba(232, 168, 56, 0.58);
}

.hero-game-hud__accent::after {
    content: none;
}

.hero-game-hud__accent--tl {
    top: clamp(5.75rem, 11vh, 7.25rem);
    left: clamp(10px, 2.5vw, 28px);
    background:
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) top left / 16px 2px no-repeat,
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) top left / 2px 16px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) top 4px left 4px / 11px 1px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) top 4px left 4px / 1px 11px no-repeat;
    filter: drop-shadow(-1px -1px 8px rgba(94, 200, 255, 0.28));
}

.hero-game-hud__accent--tr {
    top: clamp(5.75rem, 11vh, 7.25rem);
    right: clamp(10px, 2.5vw, 28px);
    background:
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) top right / 16px 2px no-repeat,
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) top right / 2px 16px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) top 4px right 4px / 11px 1px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) top 4px right 4px / 1px 11px no-repeat;
    filter: drop-shadow(1px -1px 8px rgba(94, 200, 255, 0.28));
}

.hero-game-hud__accent--bl {
    bottom: clamp(72px, 12vh, 120px);
    left: clamp(10px, 2.5vw, 28px);
    background:
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) bottom left / 16px 2px no-repeat,
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) bottom left / 2px 16px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) bottom 4px left 4px / 11px 1px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) bottom 4px left 4px / 1px 11px no-repeat;
    filter: drop-shadow(-1px 1px 8px rgba(94, 200, 255, 0.28));
}

.hero-game-hud__accent--br {
    bottom: clamp(72px, 12vh, 120px);
    right: clamp(10px, 2.5vw, 28px);
    background:
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) bottom right / 16px 2px no-repeat,
        linear-gradient(var(--corner-cyan), var(--corner-cyan)) bottom right / 2px 16px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) bottom 4px right 4px / 11px 1px no-repeat,
        linear-gradient(var(--corner-gold), var(--corner-gold)) bottom 4px right 4px / 1px 11px no-repeat;
    filter: drop-shadow(1px 1px 8px rgba(94, 200, 255, 0.28));
}

.hero-game-hud__speedmeter {
    position: absolute;
    top: clamp(6.35rem, 12.5vh, 8rem);
    right: clamp(14px, 3.5vw, 36px);
    bottom: auto;
    z-index: 1;
    text-align: right;
    max-width: min(140px, 28vw);
}

.hero-game-hud__speed-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(232, 168, 56, 0.95);
}

.hero-game-hud__bars {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 8px;
}

.hero-game-hud__bars i {
    display: block;
    width: 5px;
    border-radius: 1px;
    background: linear-gradient(180deg, rgba(180, 235, 255, 0.95) 0%, rgba(94, 200, 255, 0.6) 100%);
    box-shadow: 0 0 10px rgba(94, 200, 255, 0.45);
    animation: heroHudBars 0.9s ease-in-out infinite alternate;
}

.hero-game-hud__bars i:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.hero-game-hud__bars i:nth-child(2) {
    height: 14px;
    animation-delay: 0.08s;
}

.hero-game-hud__bars i:nth-child(3) {
    height: 18px;
    animation-delay: 0.16s;
}

.hero-game-hud__bars i:nth-child(4) {
    height: 14px;
    animation-delay: 0.24s;
}

.hero-game-hud__bars i:nth-child(5) {
    height: 10px;
    animation-delay: 0.32s;
}

@keyframes heroHudBars {
    from {
        opacity: 0.45;
        transform: scaleY(0.85);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-game-hud__bars i {
        animation: none;
        opacity: 0.85;
    }
}

@media (max-width: 968px) {
    .hero-game-hud__speedmeter {
        top: clamp(6rem, 12vh, 7.75rem);
        right: clamp(12px, 4vw, 20px);
    }
}

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

.hero.hero--road .hero-content::before {
    display: none;
}

/* Road hero — copy biased left / MC biased right (off dead-center) */
.hero-content.hero-content--road.hero-content--circle-focus {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 28px);
    padding-bottom: clamp(56px, 12vh, 108px);
    grid-template-columns: minmax(0, 1.25fr) minmax(200px, 300px);
    gap: clamp(2.25rem, 7vw, 5rem);
    align-items: center;
    justify-items: stretch;
}

@media (min-width: 969px) {
    .hero-content--circle-focus .hero-text {
        justify-self: start;
        max-width: min(100%, 540px);
        padding-left: 1.5rem;
        border-left: 3px solid transparent;
        border-image: linear-gradient(
            180deg,
            rgba(232, 168, 56, 0.95) 0%,
            rgba(94, 200, 255, 0.55) 55%,
            rgba(94, 200, 255, 0.15) 100%
        ) 1;
    }

    .hero-content--cta-only.hero-content--circle-focus .hero-text.hero-text--cta-only {
        justify-self: start;
        border: none;
        padding-left: 0;
        margin: 0;
        max-width: none;
    }

    .hero-content--circle-focus .hero-visual {
        justify-self: end;
    }
}

.hero-sr-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

/* Register-only hero: compact chrome, room for full-frame road */
.hero-content.hero-content--road.hero-content--circle-focus.hero-content--cta-only {
    grid-template-columns: auto minmax(208px, 300px);
    gap: clamp(1.75rem, 6vw, 4rem);
    padding-top: clamp(76px, 10vh, 108px);
    padding-bottom: clamp(52px, 8vh, 92px);
    align-items: center;
}

.hero.hero--road .hero-content--cta-only .hero-spotlight {
    min-height: min(268px, 34vh);
}

.hero-buttons.hero-buttons--solo {
    gap: 0;
    margin: 0;
}

.hero.hero--road .hero-visual::before,
.hero.hero--road .hero-visual::after {
    display: none;
}

.hero-spotlight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    min-height: min(320px, 38vh);
    position: relative;
}

.hero-spotlight-portal {
    position: relative;
    width: min(100%, clamp(228px, 26vw, 292px));
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0b1a2b;
    box-shadow:
        0 0 0 1px rgba(94, 200, 255, 0.12),
        0 24px 64px rgba(0, 0, 0, 0.55);
}

.hero-spotlight-image {
    width: 72%;
    height: 72%;
    display: block;
    object-fit: contain;
    object-position: center;
    transform: none;
    background: transparent;
}

@media (max-width: 968px) {
    .hero-content.hero-content--road.hero-content--circle-focus {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        justify-items: center;
    }

    .hero-content.hero-content--road.hero-content--circle-focus.hero-content--cta-only {
        gap: 1rem;
        padding-top: clamp(80px, 11vh, 104px);
        padding-bottom: clamp(40px, 7vh, 72px);
    }

    .hero-content--circle-focus .hero-text {
        justify-self: center;
        max-width: 100%;
        padding-left: 0;
        border-left: none;
        border-image: none;
    }

    .hero-spotlight {
        justify-content: center;
    }

    .hero-content--circle-focus .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content--circle-focus .hero-visual {
        order: 2;
        justify-self: center;
    }

    .hero-content--circle-focus .hero-text {
        order: 1;
    }

    .hero-spotlight {
        min-height: 280px;
        margin-top: 0.25rem;
    }

    .hero.hero--road .hero-content--cta-only .hero-spotlight {
        min-height: 236px;
    }

    .hero-spotlight-portal {
        width: min(92vw, 280px);
        margin-inline: auto;
    }

    .hero-spotlight-image {
        transform: none;
        object-position: center;
        width: 72%;
        height: 72%;
    }

    .hero-road-dashes {
        animation-duration: 1s;
    }
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(232, 168, 56, 0.96);
    margin-bottom: 0.35rem;
    text-shadow: 0 0 24px rgba(232, 168, 56, 0.35);
}

.hero-title.hero-title--momentum {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(4.75rem, 15vw, 9.75rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.06em;
    color: #f5f9ff;
    text-shadow:
        0 0 50px rgba(94, 200, 255, 0.28),
        0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero-title.hero-title--momentum .title-line {
    animation-duration: 0.9s;
}

.hero.hero--road .hero-subtitle {
    color: rgba(232, 240, 255, 0.88);
}

.hero.hero--road .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #3d8eb8 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(94, 200, 255, 0.28);
}

.hero.hero--road .btn-primary:hover {
    background: linear-gradient(135deg, #7ad4ff 0%, var(--secondary-color) 100%);
    box-shadow: 0 15px 40px rgba(232, 168, 56, 0.35);
}

.hero.hero--road .btn-secondary {
    border-color: rgba(94, 200, 255, 0.35);
}

.hero.hero--road .btn-secondary:hover {
    border-color: var(--secondary-color);
}

/* Title block sits in hero grid (left); Register is anchored bottom-left (.hero-road-cta) */
.hero-road-tagline {
    position: relative;
    z-index: 1;
    max-width: min(460px, 92vw);
    pointer-events: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

#home.hero--road .hero-road-cta {
    position: absolute;
    left: clamp(20px, 3.6vw, 40px);
    bottom: clamp(8.5rem, 17vh, 10.75rem);
    z-index: 8;
    pointer-events: auto;
}

#home.hero--road .hero-road-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
}

#home.hero--road .hero-road-cta .btn-primary,
#home.hero--road .hero-road-cta .btn-secondary {
    opacity: 1;
    animation: none;
    justify-content: center;
}

.hero-road-tagline__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.15rem;
    padding-left: 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: clamp(0.7rem, 1.55vw, 0.85rem);
    font-weight: 700;
    color: rgba(232, 168, 56, 0.98);
    text-shadow: 0 0 24px rgba(232, 168, 56, 0.35);
}

.hero-road-tagline__eyebrow::before {
    content: '';
    display: block;
    width: clamp(22px, 3.6vw, 38px);
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 168, 56, 0.9), rgba(94, 200, 255, 0));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(232, 168, 56, 0.45);
}

.hero-road-tagline__title {
    margin: 0 0 0.55rem;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3.25rem, 10.5vw, 6.25rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.08em;
    color: #f5f9ff;
    text-shadow:
        0 0 52px rgba(94, 200, 255, 0.28),
        0 12px 40px rgba(0, 0, 0, 0.55);
}

.hero-road-tagline__sub {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.88rem, 1.9vw, 1.02rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(232, 240, 255, 0.9);
    max-width: 34ch;
}

@media (max-width: 968px) {
    .hero-road-tagline {
        max-width: min(380px, 92vw);
        margin-inline: auto;
        text-align: center;
    }

    .hero-road-tagline__eyebrow {
        justify-content: center;
    }

    .hero-road-tagline__eyebrow::before {
        display: none;
    }

    .hero-road-tagline__title {
        font-size: clamp(2.85rem, 12vw, 4.25rem);
    }

    #home.hero--road .hero-road-cta {
        left: 0;
        right: 0;
        transform: none;
        display: flex;
        justify-content: center;
        bottom: clamp(7.75rem, 20vh, 10.25rem);
    }

    #home.hero--road .hero-road-cta .btn-primary,
    #home.hero--road .hero-road-cta .btn-secondary {
        width: 100%;
        max-width: min(280px, 92vw);
        justify-content: center;
    }

    #home.hero--road .hero-road-cta-inner {
        width: 100%;
        max-width: min(280px, 92vw);
        margin-inline: auto;
    }
}

/* ===== Road mini-game overlay (matches hero freeway look) ===== */
.road-game-overlay {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: grid;
    place-items: center;
    padding: clamp(12px, 4vw, 24px);
    background: rgba(3, 5, 12, 0.82);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s;
}

.road-game-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.road-game-overlay.is-open .road-game-panel {
    transform: scale(1);
}

.road-game-panel {
    position: relative;
    width: min(440px, 100%);
    max-height: min(92vh, 820px);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: clamp(14px, 3vw, 22px);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(22, 30, 44, 0.96), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(94, 200, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(232, 168, 56, 0.08),
        0 24px 56px rgba(0, 0, 0, 0.55);
    transform: scale(0.96);
    transition: transform 0.24s ease;
}

.road-game-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.road-game-close:hover {
    background: rgba(232, 168, 56, 0.2);
    color: #fff;
}

.road-game-heading {
    margin: 0 2.25rem 0 0;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.65rem, 5vw, 2.05rem);
    letter-spacing: 0.06em;
    color: #f5f9ff;
    text-shadow: 0 0 24px rgba(94, 200, 255, 0.2);
}

.road-game-hud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(232, 240, 255, 0.82);
}

.road-game-hud strong {
    color: #7ad4ff;
    font-weight: 700;
}

.road-game-effects {
    font-size: 0.82rem;
    color: rgba(232, 168, 56, 0.95);
    min-height: 1.2em;
}

.road-game-hint {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(200, 210, 226, 0.75);
    line-height: 1.55;
}

.road-game-hint kbd {
    padding: 0.12rem 0.38rem;
    margin: 0 0.1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 200, 255, 0.25);
    font-family: monospace;
    font-size: 0.72rem;
}

.road-game-stage-wrap {
    position: relative;
    width: 100%;
    margin-inline: auto;
}

.road-game-stage {
    position: relative;
    aspect-ratio: 9 / 16;
    max-height: min(520px, 58vh);
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: inset 0 0 0 1px rgba(94, 200, 255, 0.15);
}

.road-game-layers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.road-game-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 118% 88% at 50% -24%, rgba(52, 98, 168, 0.22) 0%, transparent 56%),
        linear-gradient(180deg, #03050f 0%, #0a1220 46%, #0c1524 100%);
}

.road-game-stars {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(ellipse 115% 5% at 50% 15%, rgba(255, 255, 255, 0.09), transparent 88%),
        radial-gradient(1px 1px at 28% 18%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(1px 1px at 71% 12%, rgba(255, 255, 255, 0.3), transparent);
}

.road-game-perspective {
    position: absolute;
    inset: 0;
    perspective: 420px;
    perspective-origin: 50% 100%;
}

.road-game-shoulder {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 17%;
}

.road-game-shoulder--l {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 82.5% 100%, 0% 100%);
    background: linear-gradient(180deg, #2e3846 0%, #222a35 42%, #1a212c 100%);
}

.road-game-shoulder--r {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 17.5% 100%);
    background: linear-gradient(180deg, #2e3846 0%, #222a35 42%, #1a212c 100%);
}

.road-game-surface {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    clip-path: polygon(44.5% 0, 55.5% 0, 100% 100%, 0% 100%);
    background:
        linear-gradient(90deg, transparent 0%, rgba(120, 210, 255, 0.08) 50%, transparent 100%),
        linear-gradient(
            180deg,
            #54606f 0%,
            #3f4958 24%,
            #2d3542 52%,
            #252c38 78%,
            #242b36 100%
        );
    box-shadow: inset 0 0 0 1px rgba(94, 200, 255, 0.22);
}

.road-game-dashes {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 8px;
    height: 100%;
    margin-left: -4px;
    clip-path: polygon(32% 0, 68% 0, 55.5% 100%, 44.5% 100%);
    background: repeating-linear-gradient(to bottom, rgba(253, 233, 169, 0.9) 0 20px, transparent 20px 40px);
    opacity: 0.9;
    animation: roadGameDash 0.9s linear infinite;
}

@keyframes roadGameDash {
    to {
        background-position: 0 40px;
    }
}

.road-game-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 24%, transparent 100%),
        radial-gradient(ellipse 100% 70% at 50% -30%, transparent 52%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.road-game-entities {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.road-game-player-wrap {
    position: absolute;
    z-index: 3;
    width: clamp(52px, 15%, 76px);
    left: 0;
    top: 0;
    pointer-events: none;
    transform-origin: 50% 100%;
    filter: drop-shadow(0 -3px 10px rgba(94, 200, 255, 0.45)) drop-shadow(0 8px 0 rgba(0, 0, 0, 0.55));
}

.road-game-player-wrap.has-shield {
    filter: drop-shadow(0 0 12px rgba(94, 200, 255, 0.9)) drop-shadow(0 -3px 10px rgba(94, 200, 255, 0.5));
}

.road-game-car {
    transform: perspective(280px) rotateX(56deg);
    transform-origin: center bottom;
}

.road-game-car-svg {
    display: block;
    width: 100%;
    height: auto;
}

.road-game-obstacle {
    position: absolute;
    border-radius: 6px;
    background: linear-gradient(145deg, #7a1e2d, #3d0f18);
    box-shadow:
        0 0 0 1px rgba(255, 80, 80, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.road-game-pickup {
    position: absolute;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}

.road-game-pickup--shield {
    background: radial-gradient(circle at 30% 30%, #5ec8ff, #1e4a6e);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(232, 168, 56, 0.75);
}

.road-game-pickup--star {
    background: radial-gradient(circle at 30% 30%, #ffe9a8, #e8a838);
    color: #1a1408;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.road-game-pickup--slow {
    background: radial-gradient(circle at 30% 30%, #a8e0ff, #3d8eb8);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(148, 205, 255, 0.6);
}

.road-game-front {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(4, 8, 16, 0.62);
}

.road-game-front--over {
    text-align: center;
}

.road-game-over-msg {
    margin: 0;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 0.04em;
    color: rgba(248, 200, 200, 0.96);
}

.road-game-final {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: rgba(232, 240, 255, 0.88);
}

.road-game-final strong {
    color: #7ad4ff;
}

@media (prefers-reduced-motion: reduce) {
    .road-game-dashes {
        animation: none;
    }
}

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

#hero-canvas {
    width: 100%;
    height: 100%;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle-5 {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-text {
    color: white;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary i, .btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.3);
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    z-index: 3;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.2;
    border-radius: 20px;
    transform: rotate(45deg);
    animation: floatShape1 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px var(--secondary-color);
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    opacity: 0.15;
    border-radius: 50%;
    animation: floatShape2 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes floatShape1 {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.hero-3d-elements {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.mc-awan-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    animation: mcAwanRotate 15s linear infinite;
}

.mc-awan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-style: preserve-3d;
    filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
    animation: mcAwanSubtleFloat 8s ease-in-out infinite;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 30px var(--secondary-color),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes mcAwanSubtleFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotateY(2deg); 
    }
    50% { 
        transform: translateY(-5px) rotateY(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotateY(-2deg); 
    }
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape-triangle {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 255, 255, 0.2);
    animation: rotateShape 10s linear infinite;
    backdrop-filter: blur(5px);
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.shape-circle {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.3;
    animation: pulseShape 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px var(--secondary-color);
}

.shape-square {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    opacity: 0.2;
    transform: rotate(45deg);
    animation: floatShape3 8s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px var(--primary-color);
}

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

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

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

/* Pyramid */
.pyramid {
    top: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.pyramid-face.front {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid rgba(139, 0, 0, 0.8);
    transform: translateZ(20px);
}

.pyramid-face.back {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid rgba(139, 0, 0, 0.6);
    transform: translateZ(-20px) rotateY(180deg);
}

.pyramid-face.left {
    border-left: 40px solid rgba(139, 0, 0, 0.7);
    border-right: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    transform: rotateY(-90deg) translateZ(20px);
}

.pyramid-face.right {
    border-left: 40px solid transparent;
    border-right: 40px solid rgba(139, 0, 0, 0.7);
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    transform: rotateY(90deg) translateZ(20px);
}

/* Octahedron */
.octahedron {
    top: 60%;
    right: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 5s;
}

.octa-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.octa-face.face-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.8);
    transform: translateZ(15px);
}

.octa-face.face-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.6);
    transform: translateZ(-15px) rotateY(180deg);
}

.octa-face.face-3 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.7);
    transform: rotateX(60deg) translateZ(15px);
}

.octa-face.face-4 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.5);
    transform: rotateX(-60deg) translateZ(15px);
}

.octa-face.face-5 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.6);
    transform: rotateY(90deg) translateZ(15px);
}

.octa-face.face-6 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.4);
    transform: rotateY(-90deg) translateZ(15px);
}

.octa-face.face-7 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.5);
    transform: rotateX(60deg) rotateY(90deg) translateZ(15px);
}

.octa-face.face-8 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(255, 107, 53, 0.3);
    transform: rotateX(-60deg) rotateY(90deg) translateZ(15px);
}

/* Cylinder */
.cylinder {
    bottom: 20%;
    left: 30%;
    width: 50px;
    height: 80px;
    animation-delay: 10s;
}

.cylinder-top, .cylinder-bottom {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(210, 180, 140, 0.8);
    border-radius: 50%;
    transform: translateZ(40px);
}

.cylinder-bottom {
    transform: translateZ(0px);
}

.cylinder-side {
    position: absolute;
    width: 50px;
    height: 80px;
    background: linear-gradient(90deg, rgba(210, 180, 140, 0.8) 0%, rgba(210, 180, 140, 0.6) 100%);
    border-radius: 25px;
    transform: rotateY(90deg) translateZ(25px);
}

/* Torus */
.torus {
    top: 30%;
    right: 30%;
    width: 40px;
    height: 40px;
    animation-delay: 15s;
}

.torus-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 8px solid rgba(139, 0, 0, 0.8);
    border-radius: 50%;
    transform: rotateX(60deg);
    animation: torusRotate 8s linear infinite;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    position: relative;
    animation: bounce 2s infinite;
    border-radius: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px var(--secondary-color);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--secondary-color);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent-color);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Venue Section */
.venue {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.venue-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.venue-info {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.venue-details h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 18px rgba(94, 200, 255, 0.2);
    margin-bottom: 1rem;
}

.venue-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(228, 234, 242, 0.92);
    margin-bottom: 1.5rem;
}

.venue-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(94, 200, 255, 0.28);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(94, 200, 255, 0.14);
    border-color: rgba(232, 168, 56, 0.75);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.feature span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.venue-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.venue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.venue-btn.btn-primary {
    background: linear-gradient(135deg, #5ec8ff 0%, #2d8fb8 60%, #e8a838 100%);
    color: #061018;
    border-color: rgba(232, 168, 56, 0.85);
    box-shadow: 0 8px 24px rgba(94, 200, 255, 0.3);
}

.venue-btn.btn-primary:hover {
    background: linear-gradient(135deg, #7ad4ff 0%, #3ea6d5 60%, #f0bc55 100%);
    border-color: rgba(232, 168, 56, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(94, 200, 255, 0.35);
}

.venue-btn.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.venue-btn.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.section-host {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 38, 51, 0.85);
    border: 1px solid rgba(94, 200, 255, 0.14);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.aiesec-3d-container {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.aiesec-3d-element {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: aiesecRotate 15s infinite linear;
}

.aiesec-blue-man {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 50px auto;
    transform-style: preserve-3d;
    animation: none;
    background: radial-gradient(circle at 30% 30%, rgba(94, 200, 255, 0.35) 0%, rgba(18, 34, 56, 0.94) 62%, rgba(11, 18, 30, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(94, 200, 255, 0.28);
    box-shadow:
        0 0 0 1px rgba(232, 168, 56, 0.18),
        0 14px 34px rgba(0, 0, 0, 0.42);
}

.aiesec-3d-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(3, 126, 243, 0.3));
    transform: translateZ(20px);
    animation: imagePulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Fallback for missing image */
.aiesec-blue-man::before {
    content: '🤵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    z-index: 1;
    display: none;
}

.aiesec-blue-man:not(:has(img))::before {
    display: block;
}

.aiesec-blue-man:not(:has(img)) {
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aiesec-blue-man:not(:has(img))::after {
    content: 'AIESEC';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aiesec-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(3, 126, 243, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: translateZ(30px);
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    transform: translateZ(20px);
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
    transform: translateZ(10px);
}

/* FACI Section */
.faci {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #121a26 100%);
}

.faci-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* MCP Section */
.mcp-section {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.mcp-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.mcp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.position-mcp {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Corner Sections */
.corner-section {
    margin-bottom: 4rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.corner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.corner-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.corner-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

/* Operations Corner - Max 3 per row */
.corner-section:nth-of-type(4) .corner-members {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.corner-section:nth-of-type(4) .corner-members .faci-card:nth-child(n+4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 250px;
}

/* External Relations Corner - Max 3 per row */
.corner-section:nth-of-type(5) .corner-members {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.corner-section:nth-of-type(5) .corner-members .faci-card:nth-child(n+4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 250px;
}

/* Corner Head Cards */
.corner-head-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FF8C42 100%);
    color: white;
    position: relative;
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 2;
}

.corner-head-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Top icon badges */
.badge-crown,
.badge-heart {
    position: relative;
    overflow: visible !important;
    z-index: 4;
}

.badge-crown::after {
    content: '\f521';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd84d 0%, #e8a838 60%, #b87c16 100%);
    color: #2f2200;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 18px rgba(232, 168, 56, 0.4);
    z-index: 8;
}

.badge-heart::after {
    content: '\f004';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b8f 0%, #ff3b6b 55%, #c81e35 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 18px rgba(255, 59, 107, 0.4);
    z-index: 8;
}

.corner-head-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 2px solid #8B0000;
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corner Member Cards */
.corner-member-card {
    background: var(--surface-card-dark);
    border: 2px solid rgba(94, 200, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.corner-member-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.corner-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.corner-member-card:hover::before {
    opacity: 1;
}

.position-mgmt {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.position-corner {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Special Role Badges */
.special-role-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.conference-role {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: white;
    border: 2px solid #8B0000;
}

.agenda-role {
    background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%);
    color: white;
    border: 2px solid #D2691E;
}

/* Conference Manager Cards */
.conference-manager {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%) !important;
    color: white !important;
    border: 3px solid #8B0000 !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3) !important;
}

.conference-manager .position-mgmt,
.conference-manager .position-corner {
    color: rgba(255, 255, 255, 0.9) !important;
}

.conference-manager .corner-head-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.conference-manager:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4) !important;
}

/* Agenda Manager Cards */
.agenda-manager {
    background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%) !important;
    color: white !important;
    border: 3px solid #D2691E !important;
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3) !important;
}

.agenda-manager .position-mgmt,
.agenda-manager .position-corner {
    color: rgba(255, 255, 255, 0.9) !important;
}

.agenda-manager .corner-head-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.agenda-manager:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4) !important;
}

/* Mohamed Wael - website blue/yellow highlight */
.wael-special {
    background: linear-gradient(135deg, #0d2f4d 0%, #1f78ad 58%, #e8a838 100%) !important;
    color: #ffffff !important;
    border: 3px solid rgba(94, 200, 255, 0.85) !important;
    box-shadow: 0 10px 28px rgba(94, 200, 255, 0.35) !important;
}

.wael-special .position-mgmt,
.wael-special .position-corner {
    color: rgba(255, 255, 255, 0.92) !important;
}

.wael-special:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 14px 36px rgba(94, 200, 255, 0.45) !important;
}

/* FACI Image Styling */
.faci-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: var(--transition);
}

.faci-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faci-image:hover .faci-photo {
    transform: scale(1.1);
}


.faci-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faci-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Show placeholder when no image */
.faci-image:not(:has(img)) .faci-placeholder {
    display: flex;
}

.faci-image:has(img) .faci-placeholder {
    display: none;
}

.faci-card {
    background: var(--surface-card-dark);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(94, 200, 255, 0.14);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.faci-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.faci-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.faci-image {
    margin-bottom: 1.5rem;
}

.faci-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.faci-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

.faci-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.faci-description {
    margin-top: 1rem;
}

.faci-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Chair Section */
.chair {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.chair-container {
    max-width: 800px;
    margin: 0 auto;
}

.chair-card {
    background: var(--surface-card-dark);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(94, 200, 255, 0.14);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.chair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

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

.chair-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mystery-person {
    position: relative;
    color: white;
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.mystery-text {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    animation: bounce 1s infinite;
}

.chair-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.chair-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.chair-description {
    margin-bottom: 2rem;
}

.chair-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: glow 2s infinite;
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 212, 170, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
    }
}

/* OC Hero Section */
.oc-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.oc-hero.oc-hero--road {
    background: #05070f;
    animation: none;
}

.oc-hero.oc-hero--road::before {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.52) 100%);
    z-index: 4;
}

.oc-hero-road-layers {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.oc-hero.oc-hero--road .hero-road-surface {
    height: 100%;
}

.oc-hero.oc-hero--road .hero-road-shoulder {
    height: 100%;
}

.oc-hero.oc-hero--road .hero-road-dashes {
    height: 100%;
}

.oc-hero.oc-hero--road .hero-road-horizon {
    top: 12%;
}

.oc-hero.oc-hero--road .hero-road-perspective {
    top: 0;
}

.oc-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 600;
    color: rgba(232, 168, 56, 0.96);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(232, 168, 56, 0.25);
}

.oc-hero.oc-hero--road .oc-hero-title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1;
}

.oc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

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

.oc-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.oc-hero-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.oc-hero-particles .particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.oc-hero-particles .particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.oc-hero-particles .particle-3 {
    width: 25px;
    height: 25px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.oc-hero-particles .particle-4 {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.oc-hero-particles .particle-5 {
    width: 22px;
    height: 22px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.oc-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.oc-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
}

.oc-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.oc-hero-host {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.oc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.oc-hero-stats .stat-item {
    text-align: center;
}

.oc-hero-stats .stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 24px rgba(94, 200, 255, 0.45);
}

.oc-hero-stats .stat-item p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.65);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* OC Section */
.oc {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* OC Preview Section */
.oc-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.oc-preview-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #1f2836 0%, #171d28 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(94, 200, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.oc-preview-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.oc-preview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.oc-preview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.oc-preview-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.oc-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.oc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.oc-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;
}

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

.oc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
}

.ocp-section {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.ocp-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.ocp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

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

.ocp-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ocp-placeholder i {
    color: white;
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.ocp-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ocp-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ocp-description {
    margin-bottom: 2rem;
}

.ocp-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.ocvps-section {
    max-width: 1200px;
    margin: 0 auto;
}

.ocvps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ocvps-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ocvps-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.ocvp-function {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ocvp-function::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.function-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.function-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.function-icon i {
    color: white;
    font-size: 1.5rem;
}

.function-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.ocvp-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition);
}

.ocvp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ocvp-image {
    flex-shrink: 0;
}

.ocvp-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ocvp-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.ocvp-info h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ocvp-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.teamsters-section {
    margin-top: 2rem;
}

.teamsters-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.teamsters-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.teamster-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.teamster-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.teamster-image {
    margin-bottom: 1rem;
}

.teamster-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.teamster-photo:hover {
    transform: scale(1.1);
}

.teamster-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.teamster-placeholder i {
    color: white;
    font-size: 1.5rem;
}

.teamster-card h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.empty-teamster {
    opacity: 0.7;
    border-style: dashed;
}

.empty-teamster:hover {
    border-color: var(--accent-color);
}

/* Responsive Design for OC Section */
@media (max-width: 768px) {
    .oc-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .oc-hero-title {
        font-size: 2.5rem;
    }
    
    .oc-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .oc-hero-stats {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .oc-hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .oc-hero-stats .stat-item p {
        font-size: 1rem;
    }
    
    /* OC Preview Mobile Styles */
    .oc-preview-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .oc-preview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .oc-preview-content h3 {
        font-size: 1.5rem;
    }
    
    .oc-preview-content p {
        font-size: 1rem;
    }
    
    .oc-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .oc-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .ocp-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .ocp-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .ocp-placeholder i {
        font-size: 3rem;
    }
    
    .ocvp-function {
        padding: 1.5rem;
    }
    
    .function-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .function-icon {
        width: 50px;
        height: 50px;
    }
    
    .function-icon i {
        font-size: 1.2rem;
    }
    
    .function-header h4 {
        font-size: 1.5rem;
    }
    
    .ocvp-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ocvp-photo {
        width: 100px;
        height: 100px;
    }
    
    .teamsters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .teamster-card {
        padding: 1rem;
    }
    
    .teamster-photo {
        width: 60px;
        height: 60px;
    }
    
    .teamster-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .teamster-placeholder i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .oc {
        padding: 4rem 0;
    }
    
    .ocp-card {
        padding: 1.5rem;
    }
    
    .ocvp-function {
        padding: 1rem;
    }
    
    .teamsters-grid {
        grid-template-columns: 1fr;
    }
    
    /* OC Preview Small Mobile Styles */
    .oc-preview-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .oc-preview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .oc-preview-content h3 {
        font-size: 1.3rem;
    }
    
    .oc-preview-content p {
        font-size: 0.9rem;
    }
    
    .oc-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .oc-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Memorial Section */
.memorial {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.memorial-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.memorial-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: memorialFloat 8s ease-in-out infinite;
}

.memorial-particles .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.memorial-particles .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.memorial-particles .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.memorial-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.memorial-particles .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.memorial-particles .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 40%;
    animation-delay: 5s;
}

.memorial-particles .particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 90%;
    animation-delay: 1.5s;
}

.memorial-particles .particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 5%;
    animation-delay: 3.5s;
}

@keyframes memorialFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.8;
    }
}

.memorial-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.memorial-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.memorial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.memorial-text {
    color: white;
    text-align: left;
}

.memorial-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.memorial-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.memorial-dates {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-style: italic;
}

.memorial-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 500px;
}

/* Responsive Design for Memorial Section */
@media (max-width: 768px) {
    .memorial {
        padding: 4rem 0;
        min-height: 50vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    .memorial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .memorial-image {
        width: 200px;
        height: 200px;
    }
    
    .memorial-text h1 {
        font-size: 2.5rem;
    }
    
    .memorial-dates {
        font-size: 1.2rem;
    }
    
    .memorial-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .memorial {
        padding: 3rem 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    .memorial-image {
        width: 150px;
        height: 150px;
    }
    
    .memorial-text h1 {
        font-size: 2rem;
    }
    
    .memorial-text h2 {
        font-size: 1.2rem;
    }
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: linear-gradient(180deg, #141d2a 0%, #0b0f14 55%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 22% 18%, rgba(94, 200, 255, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 82% 78%, rgba(232, 168, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(30, 50, 70, 0.35) 0%, transparent 55%);
    pointer-events: none;
}

.partners .section-header h2,
.partners .section-header p {
    color: var(--text-primary);
}

.partners .section-header p {
    color: var(--text-secondary);
}

/* Partners Section Styles */

/* Partners Section - Clean Showcase Design */
.partners-showcase {
    margin-bottom: 4rem;
}

/* Tier Headers */
.tier-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Dynamic grid for visible tiers only */
.tier-headers:has(.tier-header[style*="display: none"]) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tier-header {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 250, 252, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tier-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-header:hover::before {
    opacity: 1;
}

.tier-header.active::before {
    opacity: 1;
}

.tier-header.active {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(248, 250, 252, 0.12) 100%);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tier-header:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(248, 250, 252, 0.08) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(210, 105, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(210, 105, 30, 0.3);
}

.tier-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tier-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.tier-header:hover .tier-icon {
    transform: scale(1.15) rotate(5deg);
}

.tier-header:hover .tier-icon::before {
    opacity: 1;
}

.tier-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tier-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Tier Colors */
.tier-header.platinum .tier-icon {
    background: linear-gradient(135deg, #e5e4e2 0%, #cfd4da 48%, #b5bcc4 100%);
    color: #253041;
    box-shadow: 0 6px 16px rgba(197, 204, 213, 0.45);
}

.tier-header.gold .tier-icon {
    background: linear-gradient(135deg, #ffd700 0%, #f7b500 52%, #e49a00 100%);
    color: #2d2100;
    box-shadow: 0 6px 16px rgba(255, 199, 0, 0.4);
}

.tier-header.silver .tier-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.tier-header.bronze .tier-icon {
    background: linear-gradient(135deg, #cd7f32 0%, #b56b2f 52%, #8f4f1f 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(181, 107, 47, 0.35);
}

/* Partners Content */
.partners-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Partner Tier Content Spacing */
.platinum-content {
    margin-bottom: 4rem;
}

.gold-content {
    margin: 2rem 0;
}

.silver-content {
    margin-top: 4rem;
}

/* Tablet spacing adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .platinum-content {
        margin-bottom: 3.5rem;
    }
    
    .gold-content {
        margin: 1.8rem 0;
    }
    
    .silver-content {
        margin-top: 3.5rem;
    }
}

.partner-tier-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.partner-tier-content.active {
    display: block;
}

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

/* Partner Showcase Grid */
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

/* Gold Partners - 2x2 Grid with Exact Silver Card Sizes */
.gold-content .partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
    max-width: none;
    margin: 0;
}

/* Gold cards inherit exact same styling as default partner cards */
.gold-content .partner-showcase-card {
    /* All styling inherited from .partner-showcase-card */
}

/* Gold Partners Section - Inherit from parent container */
.gold-content {
    /* Inherit all spacing from .partners-content */
}


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

/* Partner Showcase Cards */
.partner-showcase-card {
    background: linear-gradient(145deg, rgba(30, 38, 51, 0.94) 0%, rgba(20, 29, 42, 0.92) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(94, 200, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.22),
        0 5px 15px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(94, 200, 255, 0.14) 0%, 
        rgba(232, 168, 56, 0.08) 30%,
        rgba(45, 143, 184, 0.12) 65%,
        rgba(199, 125, 26, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 24px;
}

.partner-showcase-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: all 0.6s ease;
}

.partner-showcase-card:hover::before {
    opacity: 1;
}

.partner-showcase-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.partner-showcase-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(94, 200, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(94, 200, 255, 0.38);
}

.partner-logo-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(94, 200, 255, 0.22);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.3) 0%, 
        rgba(255, 215, 0, 0.2) 50%,
        rgba(210, 105, 30, 0.3) 100%);
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.partner-showcase-card:hover .partner-logo-container {
    border-color: rgba(94, 200, 255, 0.48);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 12px 25px rgba(94, 200, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-showcase-card:hover .partner-logo-container::before {
    opacity: 1;
}

.partner-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 17px;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-container img {
    transform: scale(1.05);
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 14px;
    padding: 0.5rem;
}

.partner-details {
    text-align: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.partner-details h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-details h4 {
    color: #d9eefc;
    transform: translateY(-1px);
}

.partner-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-details p {
    color: #b7cbe2;
    transform: translateY(-1px);
}

.partner-tier-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-tier-indicator.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.partner-tier-indicator.silver {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.partner-tier-indicator.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.partner-tier-indicator.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.partner-hover-effect {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-hover-effect {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Empty Partner */
.empty-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 500px;
    margin: 0 auto;
}

.empty-partner:hover {
    border-color: var(--primary-color);
    background: rgba(139, 0, 0, 0.05);
    transform: translateY(-3px);
}

/* Empty Partner Link */
.empty-partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.empty-partner-link:hover {
    text-decoration: none;
    color: inherit;
}

.empty-partner-link:hover .empty-partner {
    border-color: var(--primary-color);
    background: rgba(139, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.empty-partner:hover .empty-icon {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(139, 0, 0, 0.1) 100%);
    transform: scale(1.1);
}

.empty-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.empty-partner h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.empty-partner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* No Partners Message */
.no-partners-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

.no-partners-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.no-partners-message h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.no-partners-message p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Partner CTA Button */
.partner-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
    color: white;
    text-decoration: none;
}

.btn-partner::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-partner:hover::before {
    left: 100%;
}

.btn-partner i {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 2rem 2rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.partner-modal-content .modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

/* Partner Modal Styles */
.partner-modal-content {
    max-width: 750px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(210, 105, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.partner-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.02) 0%, 
        rgba(255, 215, 0, 0.01) 50%,
        rgba(210, 105, 30, 0.02) 100%);
    pointer-events: none;
}

.partner-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 3px solid rgba(210, 105, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.partner-modal-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.2) 0%, 
        rgba(255, 215, 0, 0.1) 50%,
        rgba(210, 105, 30, 0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.partner-modal-content:hover .partner-modal-icon::before {
    opacity: 1;
}

.partner-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.partner-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.partner-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: var(--text-secondary);
    margin: 0;
}

.website-link, .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.website-link:hover, .social-link:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    text-decoration: none;
}

.partner-description {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.partner-description h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    font-size: 1.2rem;
    color: #ef4444;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

/* Registration Section */
.register {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Registration Background */
.register-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.register .container {
    position: relative;
    z-index: 10;
}

.register .section-header h2 {
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.register .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Refund Policy Section */
.refund-policy-section {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.refund-policy-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 100%;
}

.refund-policy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.refund-policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.refund-policy-icon i {
    font-size: 1.5rem;
    color: white;
}

.refund-policy-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #020617;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
}

.refund-policy-header p {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.refund-policy-timeline {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.refund-policy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border-left: 5px solid;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.refund-policy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.refund-policy-item:hover::before {
    opacity: 1;
}

.refund-policy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.refund-policy-item.full-refund {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.refund-policy-item.half-refund {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 100%);
}

.refund-policy-item.quarter-refund {
    border-left-color: #fd7e14;
    background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
}

.refund-policy-item.no-refund {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.refund-percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.refund-percentage .percentage {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.refund-policy-item.full-refund .percentage {
    color: #1f9d4c;
}

.refund-policy-item.half-refund .percentage {
    color: #9a6b00;
}

.refund-policy-item.quarter-refund .percentage {
    color: #b45309;
}

.refund-policy-item.no-refund .percentage {
    color: #b4232f;
}

.refund-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refund-dates {
    flex: 1;
    margin-left: 2rem;
}

.date-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    font-weight: 600;
}

.date-range i {
    color: #156fa0;
    font-size: 1.2rem;
}

.refund-policy-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #dbeefe 0%, #eef6ff 100%);
    border-radius: 12px;
    border-left: 4px solid #156fa0;
    border-top: 1px solid rgba(21, 111, 160, 0.22);
    border-right: 1px solid rgba(21, 111, 160, 0.16);
    border-bottom: 1px solid rgba(21, 111, 160, 0.16);
}

.refund-policy-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.refund-policy-note p {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Refund Policy */
@media (max-width: 768px) {
    .refund-policy-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .refund-policy-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .refund-dates {
        margin-left: 0;
    }
    
    .refund-percentage .percentage {
        font-size: 2rem;
    }
    
    .refund-policy-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .refund-policy-container {
        padding: 1rem;
    }
    
    .refund-policy-item {
        padding: 1rem;
    }
    
    .refund-percentage .percentage {
        font-size: 1.8rem;
    }
}

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

.registration-form-container {
    max-width: 600px;
    width: 100%;
}

.registration-form {
    background: linear-gradient(180deg, #1b2330 0%, #141a24 100%);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(94, 200, 255, 0.12);
    border: 1px solid rgba(232, 168, 56, 0.3);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 0 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fafbfc;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.registration-form .form-group input,
.registration-form .form-group textarea,
.registration-form .form-group select {
    background-color: rgba(11, 16, 24, 0.9);
    color: #f3f7ff;
    border-color: rgba(94, 200, 255, 0.38);
    font-weight: 500;
}

.registration-form .form-group input:hover,
.registration-form .form-group textarea:hover,
.registration-form .form-group select:hover {
    border-color: rgba(232, 168, 56, 0.6);
    background-color: rgba(18, 27, 39, 0.96);
}

.registration-form .form-group input:focus,
.registration-form .form-group textarea:focus,
.registration-form .form-group select:focus {
    border-color: var(--accent-color);
    background-color: rgba(19, 29, 42, 0.98);
    box-shadow: 0 0 0 4px rgba(94, 200, 255, 0.2), 0 8px 25px rgba(0, 0, 0, 0.25);
}

.registration-form .form-group input::placeholder,
.registration-form .form-group textarea::placeholder {
    color: rgba(214, 227, 246, 0.85);
}

.registration-form .form-group select option {
    background: #0f1722;
    color: #f3f7ff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* File Upload Styling */
.file-label {
    display: block;
    cursor: pointer;
    width: 100%;
}

.file-label input[type="file"] {
    display: none;
}

.file-input-display {
    width: 100%;
    padding: 1.5rem 1.25rem;
    border: 2px dashed rgba(94, 200, 255, 0.5);
    border-radius: 15px;
    background-color: rgba(15, 27, 42, 0.72);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
}

.file-input-display:hover {
    border-color: rgba(232, 168, 56, 0.75);
    background-color: rgba(18, 34, 52, 0.9);
    transform: translateY(-2px);
}

.file-input-display i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.file-input-display span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.file-input-display small {
    color: rgba(214, 227, 246, 0.88);
    font-size: 0.85rem;
}

/* File upload success state */
.file-input-display.uploaded {
    border-color: #22c55e !important;
    background-color: rgba(34, 197, 94, 0.1) !important;
    position: relative;
}

.file-input-display.uploaded::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: successPulse 0.6s ease-out;
}

.file-input-display.uploaded i {
    color: #22c55e !important;
}

.file-input-display.uploaded span {
    color: #22c55e !important;
    font-weight: 700;
}

.file-input-display.uploaded small {
    color: #16a34a !important;
}

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

.file-label input[type="file"]:focus + .file-input-display {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background-color: rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Compact File Input */
.file-input-display.compact {
    min-height: 90px;
    padding: 1rem;
    gap: 0.5rem;
}

.file-input-display.compact i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.file-input-display.compact span {
    font-size: 0.9rem;
}

.file-input-display.compact small {
    font-size: 0.75rem;
}

.file-input-display.optional {
    border-color: rgba(156, 163, 175, 0.4);
    background-color: rgba(156, 163, 175, 0.05);
}

.file-input-display.optional:hover {
    border-color: rgba(156, 163, 175, 0.6);
    background-color: rgba(156, 163, 175, 0.1);
}

.file-input-display.optional i {
    color: #9ca3af;
}

/* Compact Indemnity Section */
.indemnity-section-compact {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(6, 41, 52, 0.58);
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 12px;
}

.indemnity-header-compact {
    text-align: center;
    margin-bottom: 1rem;
}

.indemnity-header-compact h4 {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.indemnity-header-compact p {
    color: rgba(209, 250, 229, 0.92);
    font-size: 0.85rem;
    margin: 0;
}

.indemnity-actions-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-download-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.btn-download-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-download-compact i {
    font-size: 0.9rem;
}

.indemnity-actions-compact .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Compact LC Password Section */
.lc-password-section-compact {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(68, 12, 22, 0.35);
    border: 1px solid rgba(248, 113, 113, 0.45);
    border-radius: 10px;
}

.lc-password-section-compact label {
    color: #fca5a5;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.lc-password-section-compact input {
    border-color: rgba(248, 113, 113, 0.6);
    background-color: rgba(14, 22, 34, 0.95);
    color: #ffe4e6;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.lc-password-section-compact input:focus {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.22);
}

        .password-hint {
            color: #fecdd3;
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Workshop Interest Section */
        .workshop-section-compact {
            margin: 0.75rem 0;
            padding: 0.75rem;
            background: rgba(6, 41, 52, 0.45);
            border: 1px solid rgba(45, 212, 191, 0.35);
            border-radius: 10px;
        }

        .workshop-section-compact label {
            color: #10b981;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .workshop-section-compact select {
            border-color: rgba(45, 212, 191, 0.5);
            background-color: rgba(14, 22, 34, 0.95);
            color: #d1fae5;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .workshop-section-compact select:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .workshop-hint {
            color: rgba(167, 243, 208, 0.95);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Transportation Request Section */
        .transportation-section {
            margin: 0.75rem 0;
            padding: 0.75rem;
            background: rgba(67, 20, 7, 0.35);
            border: 1px solid rgba(251, 146, 60, 0.4);
            border-radius: 10px;
        }

        .transportation-section label {
            color: #fdba74;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .transportation-section select {
            border-color: rgba(251, 146, 60, 0.5);
            background-color: rgba(14, 22, 34, 0.95);
            color: #ffedd5;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .transportation-section select:focus {
            border-color: #fb923c;
            box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
        }

        .transportation-hint {
            color: rgba(139, 0, 0, 0.8);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Conference Fees Section */
        .fees-section {
            margin: 2rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .fees-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: feesShimmer 3s ease-in-out infinite;
        }

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

        .fees-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .fees-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .fees-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .fees-content {
            flex: 1;
            color: white;
        }

        .fees-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .fees-amount {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .fees-amount .currency {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .fees-amount .amount {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            line-height: 1;
        }

        .fees-subtitle {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            color: #FFD700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .fees-note {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .fees-note i {
            color: #FFD700;
            animation: pulse 2s ease-in-out infinite;
        }

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

        /* Conference Merchandise Section */
        .merchandise-section {
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        /* Enhanced Shop Styling */
        .merchandise-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }

        .merchandise-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .merchandise-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 165, 0, 0.3);
            border-color: var(--accent-color);
        }

        .merchandise-item:hover::before {
            opacity: 1;
        }

        .merchandise-item.selected {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
        }

        .merchandise-item.selected::before {
            opacity: 1;
        }

        .merchandise-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .merchandise-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .merchandise-title i {
            color: var(--accent-color);
        }

        .merchandise-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin: 0;
        }

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

        .merchandise-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 25px;
            padding: 2rem;
            border: 2px solid rgba(255, 107, 107, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
        }

        .merchandise-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .merchandise-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4);
            border-color: var(--accent-color);
        }

        .merchandise-item:hover::before {
            opacity: 1;
        }

        .merchandise-item.selected {
            border-color: var(--accent-color);
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
            box-shadow: 0 15px 50px rgba(255, 165, 0, 0.3);
        }

        .merchandise-item.selected::before {
            opacity: 1;
        }

        .merchandise-image {
            width: 100%;
            height: 250px;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
            position: relative;
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.3);
            border: 2px solid rgba(255, 107, 107, 0.2);
        }

        .merchandise-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }

        .merchandise-image:hover img {
            transform: scale(1.05);
        }

        .carousel-container {
            position: relative;
        }

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

        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
            transform: scale(0.95);
        }

        .carousel-image.active {
            opacity: 1;
            z-index: 2;
            transform: scale(1);
        }

        .merchandise-item:hover .carousel-image.active {
            transform: scale(1.05);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 107, 0.8);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0;
            backdrop-filter: blur(10px);
        }

        .carousel-nav:hover {
            background: var(--accent-color);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }

        .carousel-container:hover .carousel-nav {
            opacity: 1;
        }

        .carousel-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: var(--accent-color);
            transform: scale(1.3);
            border-color: white;
            box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
        }

        .carousel-dot:hover {
            background: white;
            transform: scale(1.2);
        }



        .merchandise-details {
            text-align: center;
        }

        .merchandise-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.75rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
            text-align: center;
        }

        .merchandise-description {
            font-size: 1rem;
            color: #E8E8E8;
            margin-bottom: 1.25rem;
            line-height: 1.5;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            text-align: center;
        }

        .tshirt-size-selector {
            margin-bottom: 1rem;
            text-align: center;
        }

        .tshirt-size-selector label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFD700;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
        }

        .tshirt-size-selector .size-select {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            color: #FFFFFF;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.6rem 1rem;
            width: 120px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .tshirt-size-selector .size-select:hover {
            border-color: rgba(255, 215, 0, 0.6);
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .tshirt-size-selector .size-select:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }

        .tshirt-size-selector .size-select.selected {
            border-color: #FFD700;
            background: rgba(255, 215, 0, 0.15);
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
        }

        .tshirt-size-selector .size-select option {
            background: #2a2a2a;
            color: #FFFFFF;
            padding: 0.5rem;
        }

        .merchandise-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .price-currency {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFA500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .quantity-btn {
            width: 45px;
            height: 45px;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            color: var(--accent-color);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
        }

        .quantity-btn:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, #FF8C00 100%);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
        }

        .quantity-btn:disabled {
            background: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
            transform: none;
        }

        .quantity-input {
            width: 70px;
            height: 45px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            text-align: center;
            outline: none;
            backdrop-filter: blur(10px);
        }

        .quantity-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
        }

        .item-total {
            text-align: center;
            padding: 0.75rem;
            background: rgba(139, 0, 0, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(139, 0, 0, 0.3);
        }

        .item-total-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .merchandise-summary {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255, 107, 107, 0.4);
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
        }

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

        .cart-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
        }

        .cart-title i {
            color: var(--accent-color);
            filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.6));
        }

        .cart-items-count {
            font-size: 0.9rem;
            color: #E8E8E8;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 107, 107, 0.3);
        }

        .cart-items {
            margin-bottom: 1.5rem;
            max-height: 200px;
            overflow-y: auto;
        }

        .empty-cart {
            text-align: center;
            padding: 2rem;
            color: #FFB3B3;
        }

        .empty-cart i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.8;
            color: #FF9999;
        }

        .empty-cart p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        .empty-cart small {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .cart-totals {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 0.5rem 0;
        }

        .total-label {
            font-size: 1rem;
            color: #E8E8E8;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .total-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }

        .grand-total-row {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .grand-total-row .total-label {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFFFFF;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
        }

        .grand-total-row .total-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cart-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cart-item-name {
            font-size: 0.9rem;
            color: #FF6B6B;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .cart-item-price {
            font-size: 1rem;
            color: var(--accent-color);
            font-weight: 700;
        }

        /* Enhanced Multi-Step Form Styles */
    .form-navigation {
        margin: 2rem 0;
        padding: 1.5rem;
        background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 20px;
        border: 2px solid rgba(255, 107, 107, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(139, 0, 0, 0.4);
    }

        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }


        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary-color);
            border: 2px solid white;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }


        .step.active .step-number {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
        }

        .step.completed .step-number {
            background: #4CAF50;
            border-color: #4CAF50;
            color: white;
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        }

        .step.completed .step-number::after {
            content: '✓';
            position: absolute;
            font-size: 1rem;
            font-weight: 900;
        }

        .step-label {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .step.active .step-label {
            color: white;
            font-weight: 600;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        }

        .step.completed .step-label {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        /* Step Progress Animation */
        @keyframes stepProgress {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .step.active .step-number {
            animation: stepProgress 0.6s ease-in-out;
        }

        /* Step Pulse Effect */
        @keyframes stepPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 165, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
        }

        .step.active .step-number {
            animation: stepProgress 0.6s ease-in-out, stepPulse 2s infinite;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .form-step.active {
            display: block;
        }

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

        .step-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f3f7ff;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .step-title i {
            color: var(--accent-color);
        }

        .step-description {
            color: rgba(226, 236, 250, 0.92);
            font-size: 1rem;
            margin: 0;
        }

        .form-navigation-buttons {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-top: 2rem;
            gap: 1rem;
            width: 100%;
        }

        .form-navigation-buttons .btn {
            height: 50px;
            min-height: 50px;
            max-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            flex-shrink: 0;
            vertical-align: baseline;
            margin: 0;
            padding: 0;
        }

        .form-navigation-buttons .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            color: white;
            padding: 0.75rem 1.5rem;
            gap: 0.5rem;
            margin: 0;
        }

        .form-navigation-buttons .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
        }

        .form-navigation-buttons .btn-secondary {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            margin: 0;
        }

        .form-navigation-buttons .btn-secondary:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 1) 0%, rgba(139, 0, 0, 0.8) 100%);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
        }


/* Compact CV Upload Section */
.cv-upload-section-compact {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.cv-upload-header-compact {
    text-align: center;
    margin-bottom: 1rem;
}

.cv-upload-header-compact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cv-upload-header-compact p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Indemnity Form Section (Old - Keep for reference) */
.indemnity-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.indemnity-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.indemnity-header h3 {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.indemnity-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.indemnity-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-download::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;
}

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

.btn-download i {
    font-size: 1.2rem;
}

.indemnity-section .file-input-display {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.indemnity-section .file-input-display:hover {
    background-color: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    transform: translateY(-2px);
}

.indemnity-section .file-input-display i {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* LC Password Section */
.lc-password-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.lc-password-section label {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.lc-password-section input {
    border-color: rgba(239, 68, 68, 0.3);
    background-color: rgba(239, 68, 68, 0.05);
}

.lc-password-section input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.password-hint {
    color: rgba(239, 68, 68, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

/* CV Upload Section */
.cv-upload-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cv-upload-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cv-upload-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.cv-upload-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

.cv-upload-section .file-input-display {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.cv-upload-section .file-input-display:hover {
    background-color: rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cv-upload-section .file-input-display i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Button Styles */
.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background: var(--gradient-primary);
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
}

.btn-primary::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;
}

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

/* COD Payment Form Specific Styles */
.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
    margin-bottom: 0;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 4px;
    background-color: #fafbfc;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.terms-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.processing-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

.processing-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.processing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.step i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.step.active i {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.step.completed i {
    background: #22c55e;
    color: white;
}

.step span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.processing-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
}

.processing-warning i {
    color: #ef4444;
    animation: blink 1.5s ease-in-out infinite;
}

/* Progress Bar Styles */
.progress-container {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

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

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animations */

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

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideOutRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

/* Processing Overlay Styles */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.processing-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

.processing-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.processing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B0000 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.processing-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.processing-step.active {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.3);
}

.processing-step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.processing-step i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.processing-step.active i {
    background: #8B0000;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.processing-step.completed i {
    background: #22c55e;
    color: white;
}

/* Third step (completion indicator) - lighter styling */
.processing-step:nth-child(3) {
    background: rgba(210, 180, 140, 0.08) !important;
    border-color: rgba(210, 180, 140, 0.2) !important;
    opacity: 0.9;
}

.processing-step:nth-child(3).active {
    background: rgba(210, 180, 140, 0.15) !important;
    border-color: rgba(210, 180, 140, 0.3) !important;
}

.processing-step:nth-child(3).completed {
    background: rgba(210, 180, 140, 0.12) !important;
    border-color: rgba(210, 180, 140, 0.25) !important;
}

.processing-step:nth-child(3) i {
    background: rgba(210, 180, 140, 0.2) !important;
    color: rgba(210, 180, 140, 0.8) !important;
}

.processing-step:nth-child(3).active i {
    background: #D2B48C !important;
    color: white !important;
}

.processing-step:nth-child(3).completed i {
    background: #D2B48C !important;
    color: white !important;
}

.processing-step:nth-child(3) span {
    color: rgba(210, 180, 140, 0.9) !important;
}

.processing-step span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.processing-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
}

.processing-warning i {
    color: #ef4444;
    animation: blink 1.5s ease-in-out infinite;
}

/* Mobile responsive styles for processing overlay */
@media (max-width: 768px) {
    .processing-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.5rem;
    }
    
    .processing-content p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .processing-step {
        padding: 0.75rem;
    }
    
    .processing-step i {
    width: 20px;
    height: 20px;
        font-size: 0.8rem;
    }
    
    .processing-step span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .processing-content {
        padding: 1.5rem 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.3rem;
    }
    
    .processing-content p {
        font-size: 0.9rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
    }
}

/* Thank You Page Styles */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #070a0e;
    animation: none;
}

.thank-you-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.thank-you-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(232, 168, 56, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, rgba(12, 22, 38, 0.95) 0%, rgba(7, 10, 16, 0.98) 100%);
    animation: none;
}


.thank-you-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem 2rem;
}

.success-icon-large {
    font-size: 6rem;
    color: #10b981;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

.registration-details-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.registration-details-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-item.total {
    border-top: 2px solid rgba(255, 107, 107, 0.5);
    padding-top: 1rem;
    margin-top: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.payment-item span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.payment-item.merchandise span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.amount {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.total-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
}

.thank-you-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.thank-you-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-description {
        font-size: 1.1rem;
    }
    
    .success-icon-large {
        font-size: 4rem;
    }
    
    .registration-details-card {
        padding: 1.5rem;
    }
    
    .registration-details-card h3 {
        font-size: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    transform: translateY(-1px);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shapeRotate {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }
    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes torusRotate {
    from {
        transform: rotateX(60deg) rotateY(0deg);
    }
    to {
        transform: rotateX(60deg) rotateY(360deg);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}

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

@keyframes aiesecRotate {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }
    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes aiesecFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(10deg);
    }
}

@keyframes imagePulse {
    0%, 100% {
        transform: translateZ(20px) scale(1);
    }
    50% {
        transform: translateZ(30px) scale(1.05);
    }
}

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

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* MC Awan 3D Animations */
@keyframes mcAwanRotate {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(10deg);
    }
    25% {
        transform: translate(-50%, -50%) rotateY(90deg) rotateX(5deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(180deg) rotateX(10deg);
    }
    75% {
        transform: translate(-50%, -50%) rotateY(270deg) rotateX(5deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(10deg);
    }
}

@keyframes mcAwanFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0px);
    }
    25% {
        transform: translateY(-10px) translateZ(10px);
    }
    50% {
        transform: translateY(0px) translateZ(20px);
    }
    75% {
        transform: translateY(10px) translateZ(10px);
    }
}

/* Additional 3D Effects */
.hero-3d-elements:hover .aiesec-logo-3d {
    animation-play-state: paused;
    transform: translate(-50%, -50%) rotateY(0deg) scale(1.1);
}


/* Enhanced Scroll Effects */
.section-header {
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 200, 255, 0.18), rgba(232, 168, 56, 0.16), transparent);
    animation: sectionShine 3s ease-in-out infinite;
}

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

/* 3D Button Effects */
.btn-primary, .btn-secondary {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    transform: translateZ(-5px);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) translateZ(5px);
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    transform: translateZ(-10px);
    opacity: 0.5;
}

/* 3D Card Enhancements */
.faci-card, .chair-card {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.faci-card:hover, .chair-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(94, 200, 255, 0.12);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 120vh;
        min-height: 120vh;
        padding: 2rem 0;
        padding-top: 90px; /* Account for fixed navbar */
    }

    .hero.hero--road {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
    }

    .hero.hero--road .hero-content {
        min-height: 0;
        padding-top: clamp(78px, 12vh, 100px);
        padding-bottom: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .hero-title.hero-title--momentum {
        font-size: clamp(3.25rem, 14vw, 5.5rem);
        line-height: 0.92;
    }

    .hero-eyebrow {
        letter-spacing: 0.28em;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        order: 2; /* Move visual below text */
    }
    
    .hero-text {
        order: 1; /* Move text above visual */
        margin-bottom: 1rem;
    }
    
    .mc-awan-3d {
        width: 300px;
        height: 300px;
        animation: mcAwanRotate 15s linear infinite !important;
        animation-duration: 15s !important;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-style: preserve-3d;
    }
    
    .mc-awan-image {
        animation: mcAwanSubtleFloat 8s ease-in-out infinite !important;
        animation-duration: 8s !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform-style: preserve-3d;
        filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 0 30px var(--secondary-color),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .schedule-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 3rem;
    }
    
    .timeline-date {
        text-align: left !important;
        margin-bottom: 1rem;
    }
    
    .timeline-content::before {
        left: -30px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .chair-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .chair-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .mystery-person {
        font-size: 3rem;
    }
    
    .mcp-card {
        padding: 2rem;
        max-width: 350px;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .corners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .faci-image {
        width: 100px;
        height: 100px;
    }
    
    .faci-placeholder {
        font-size: 2.5rem;
    }
    
    .corner-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .corner-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .corner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .corner-title {
        font-size: 1.5rem;
    }
    
    .corner-members {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .corner-head-card {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 130vh;
        min-height: 130vh;
        padding: 1rem 0;
        padding-top: 90px; /* Account for fixed navbar */
    }

    .hero.hero--road {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
    }

    .hero.hero--road .hero-content {
        min-height: 0;
        padding-top: clamp(76px, 12vh, 96px);
        padding-bottom: 0.75rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        min-height: 110vh;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-title.hero-title--momentum {
        font-size: clamp(2.6rem, 15vw, 3.6rem);
        line-height: 0.9;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.22em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        order: 2; /* Move visual below text */
    }
    
    .hero-text {
        order: 1; /* Move text above visual */
        margin-bottom: 1rem;
    }
    
    .mc-awan-3d {
        width: 250px;
        height: 250px;
        animation: mcAwanRotate 15s linear infinite;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-style: preserve-3d;
    }
    
    .mc-awan-image {
        animation: mcAwanSubtleFloat 8s ease-in-out infinite !important;
        animation-duration: 8s !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform-style: preserve-3d;
        filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 0 30px var(--secondary-color),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    
    .indemnity-section {
        padding: 1rem;
    }
    
    .fees-amount {
        font-size: 1.5rem;
    }
    
    .upload-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .file-upload-label,
    .camera-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-options {
        max-height: 150px;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .indemnity-compact {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .indemnity-link-small,
    .file-upload-label-small {
        width: 100%;
        justify-content: center;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-nav,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile responsive for partner modal */
    .partner-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    .partner-modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .detail-item {
        padding: 1.2rem;
    }
    
    .detail-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .partner-description {
        padding: 1.5rem;
    }
    
    /* Mobile responsive for partners section */
    .tier-headers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .tier-header {
        padding: 1rem 0.75rem;
    }
    
    .tier-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .tier-header h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .tier-header p {
        font-size: 0.75rem;
    }
    
    .partners-content {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    /* Mobile partner tier spacing adjustments */
    .platinum-content {
        margin-bottom: 3rem;
    }
    
    .gold-content {
        margin: 1.5rem 0;
    }
    
    .silver-content {
        margin-top: 3rem;
    }
    
    .partner-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    
    .partner-showcase-card {
        padding: 1.5rem;
    }
    
    .partner-logo-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .partner-details h4 {
        font-size: 1.2rem;
    }
    
    .partner-details p {
        font-size: 0.9rem;
    }
    
    .partner-tier-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .partner-hover-effect {
        width: 35px;
        height: 35px;
        right: 1rem;
        font-size: 0.9rem;
    }
    
    .empty-partner {
        padding: 3rem 1.5rem;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-partner h4 {
        font-size: 1.3rem;
    }
    
    .empty-partner p {
        font-size: 0.9rem;
    }
    
    /* Mobile responsive for venue section */
    .venue {
        padding: 4rem 0;
    }
    
    .venue-content {
        margin-top: 1.5rem;
    }
    
    .venue-info {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .venue-details h3 {
        font-size: 1.8rem;
    }
    
    .venue-details p {
        font-size: 1rem;
    }
    
    .venue-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .venue-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .venue-btn {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    

    /* Mobile responsive for registration form */
    .registration-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .registration-form {
        padding: 1.5rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .indemnity-section-compact {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    .indemnity-header-compact h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .indemnity-header-compact p {
        font-size: 0.8rem;
    }

    .indemnity-actions-compact {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-download-compact {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        align-self: center;
    }

    .lc-password-section-compact {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }

    .lc-password-section-compact label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .lc-password-section-compact input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

        .password-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .workshop-section-compact {
            padding: 0.5rem;
            margin: 0.5rem 0;
        }

        .workshop-section-compact label {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .workshop-section-compact select {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
        }

        .workshop-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .transportation-section {
            padding: 0.5rem;
            margin: 0.5rem 0;
        }

        .transportation-section label {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .transportation-section select {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
        }

        .transportation-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .fees-section {
            margin: 1.5rem 0;
            padding: 1rem;
        }

        .fees-container {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .fees-icon {
            width: 50px;
            height: 50px;
        }

        .fees-icon i {
            font-size: 1.2rem;
        }

        .fees-title {
            font-size: 1.1rem;
        }

        .fees-amount .amount {
            font-size: 2rem;
        }

        .fees-amount .currency {
            font-size: 1rem;
        }

        .fees-subtitle {
            font-size: 0.9rem;
        }

        .fees-note {
            font-size: 0.8rem;
        }

        .merchandise-section {
            margin: 1.5rem 0;
            padding: 1rem;
        }

        .merchandise-title {
            font-size: 1.5rem;
            flex-direction: column;
            gap: 0.25rem;
        }

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

        .merchandise-item {
            padding: 1rem;
        }

        .merchandise-image {
            height: 200px;
        }

        .merchandise-name {
            font-size: 1.1rem;
        }

        .merchandise-price {
            font-size: 1rem;
        }

        .quantity-select {
            width: 70px;
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
        }

        .total-label, .grand-total-label {
            font-size: 1rem;
        }

        .total-amount {
            font-size: 1.2rem;
        }

        .grand-total-label {
            font-size: 1.1rem;
        }

        .grand-total-amount {
            font-size: 1.5rem;
        }

        .form-navigation {
            margin: 1.5rem 0;
            padding: 1.5rem;
        }

        .step-indicator {
            max-width: 300px;
        }

        .step:not(:last-child)::after {
            width: 1rem;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .step-number {
            width: 40px;
            height: 40px;
            font-size: 1rem;
            border-width: 2px;
        }

        .step.active .step-number {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4), 0 0 0 3px rgba(255, 165, 0, 0.2);
        }

        .step-label {
            font-size: 0.85rem;
        }

        .step-title {
            font-size: 1.5rem;
            flex-direction: column;
            gap: 0.25rem;
        }

        .step-description {
            font-size: 0.9rem;
        }

        .form-navigation-buttons {
            flex-direction: column;
            gap: 1rem;
        }

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

        .merchandise-item {
            padding: 1rem;
        }

        .merchandise-image {
            height: 200px;
        }

        .carousel-dots {
            bottom: 6px;
        }

        .carousel-dot {
            width: 6px;
            height: 6px;
        }

        .merchandise-name {
            font-size: 1.1rem;
        }

        .merchandise-description {
            font-size: 0.8rem;
        }

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

        .quantity-btn {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .quantity-input {
            width: 50px;
            height: 35px;
            font-size: 1rem;
        }

        .cart-header {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        .cart-title {
            font-size: 1.2rem;
        }

        .cart-items-count {
            font-size: 0.8rem;
        }

    .cv-upload-section-compact {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    .cv-upload-header-compact h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cv-upload-header-compact p {
        font-size: 0.8rem;
    }

    .file-input-display.compact {
        min-height: 80px;
        padding: 0.75rem;
    }

    .file-input-display.compact i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .file-input-display.compact span {
        font-size: 0.85rem;
    }

    .file-input-display {
        min-height: 80px;
        padding: 1rem;
    }

    .file-input-display i {
        font-size: 1.25rem;
    }

    .file-input-display span {
        font-size: 0.85rem;
    }

    .file-input-display small {
        font-size: 0.8rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

    .processing-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.5rem;
    }
    
    .processing-content p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .step {
        padding: 0.75rem;
    }
    
    .step i {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .step span {
        font-size: 0.9rem;
    }
}

/* Custom Cursor */
* {
    cursor: url('assets/blue man no bg.png'), auto;
}

button, 
a, 
input[type="submit"], 
.btn, 
.btn-submit,
.file-upload-label,
.indemnity-link {
    cursor: url('assets/blue man no bg.png'), pointer;
}

input, 
select, 
textarea {
    cursor: url('assets/blue man no bg.png'), text;
}
