@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1s.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1s.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1s.woff2') format('woff2');
}

/* --- CSS RESET & VARIABLES (Style 2 palette, driving Style 1 layout) --- */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8534;
    --accent-color: #ffa066;
    --primary-blue: #0A66FF;      /* kept for links/utility accents */

    --text-color: #2d2d2d;
    --light-text: #666666;
    --text-muted: #8a8a8a;

    --background-light: #fff5f0;
    --white: #ffffff;
    --dark-navy: #1a1a1a;          /* used only for dark surfaces (footer, glass cards) */
    --light-navy: #241f1c;

    --glass-bg: rgba(255, 107, 0, 0.04);
    --glass-border: rgba(255, 107, 0, 0.14);

    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff8534);
    --gradient-gold: linear-gradient(45deg, #FFA500, #FFD700);

    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    --section-padding: 5rem 0;
    --container-padding: 2rem;
    --header-height: 80px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(255, 107, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(255, 107, 0, 0.14);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html { font-size: 16px; }

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
}

/* --- GLOBAL COMPONENTS --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--light-text);
    font-size: var(--font-size-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
    animation: pulse 2s infinite;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.15);
    color: var(--text-color);
}
.btn-outline:hover {
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: var(--header-height);
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}
.logo img:hover { transform: translateY(-2px) scale(1.05); }

.nav-menu { display: flex; align-items: center; gap: 25px; }

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav-link:hover { background: rgba(255, 107, 0, 0.08); color: var(--primary-color); }

.nav-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-color); }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--header-height) + 60px) 20px 60px 20px;
    background: linear-gradient(160deg, #fff8f3 0%, var(--white) 55%, var(--background-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255,107,0,0.06) 1.5px, transparent 0);
    background-size: 40px 40px;
    top: -50%; left: -50%;
    animation: float 20s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

.hero-logo-box {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-color);
}
.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    background: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}
.hero-meta span i { color: var(--primary-color); margin-right: 8px; }

.hero-cta { display: flex; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; justify-content: center; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    padding: 20px 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
}

/* --- COUNTDOWN TIMER --- */
.countdown-section {
    background: var(--background-light);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.countdown-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 700;
}

.countdown-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.countdown-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    min-width: 100px;
    padding: 15px;
}

.countdown-time { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); display: block; }
.countdown-label { font-size: 0.8rem; color: var(--light-text); text-transform: uppercase; }

/* --- ABOUT SECTION --- */
.about { background: var(--background-light); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.about-text p { font-size: 1.1rem; color: var(--light-text); margin-bottom: 20px; }

/* --- WHY PARTICIPATE / SERVICES GRID --- */
.why-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card, .service-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-card:hover, .service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.why-icon, .service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.why-card h3, .service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p, .service-card p { color: var(--light-text); font-size: 0.95rem; }

/* --- TIMELINE --- */
.timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; }

.timeline-item { display: flex; margin-bottom: 40px; position: relative; }

.timeline-badge {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255,107,0,0.3);
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    margin-left: 30px;
    width: 100%;
}
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 5px; }
.timeline-content p { color: var(--light-text); }

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    height: 90%;
    width: 2px;
    background: var(--glass-border);
    z-index: 1;
}

/* --- PRIZE POOL --- */
.total-prize-box {
    text-align: center;
    background: var(--background-light);
    border: 2px dashed var(--primary-color);
    padding: 25px;
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin: 0 auto 50px auto;
}
.total-prize-box h3 { font-size: 1.2rem; color: var(--light-text); text-transform: uppercase; }
.total-prize-box .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prizes-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }

.prize-card-premium {
    background: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.prize-card-premium.winner { border-color: #ffd700; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15); }
.prize-card-premium.runner { border-color: #c0c0c0; box-shadow: 0 10px 30px rgba(192, 192, 192, 0.15); }
.prize-card-premium:hover { transform: translateY(-6px); }

.prize-badge-icon { font-size: 3rem; margin-bottom: 15px; }
.prize-card-premium.winner .prize-badge-icon { color: #eab000; }
.prize-card-premium.runner .prize-badge-icon { color: #a8a8a8; }

.prize-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 10px; }
.prize-cash { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 25px; }

.prize-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
}
.prize-perks li { display: flex; align-items: center; gap: 8px; color: var(--light-text); }
.prize-perks li i { color: #1fa85c; }

.prizes-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.prize-card-mini {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.prize-card-mini:hover { border-color: var(--primary-color); transform: translateY(-4px); }
.prize-card-mini i { font-size: 2rem; color: var(--primary-color); margin-bottom: 10px; }
.prize-card-mini h4 { font-size: 1.1rem; margin-bottom: 8px; }
.prize-card-mini .cash { font-size: 1.5rem; font-weight: 700; color: var(--text-color); }

/* --- REGISTRATION / PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }

.pricing-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card.recommended {
    border: 2px solid var(--primary-color);
    background: var(--background-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--light-text); }
.pricing-card .price { font-size: 3rem; font-weight: 800; margin-bottom: 25px; color: var(--text-color); }

.pricing-rule {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    background: var(--background-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
}

/* --- EVENT DAY TIMELINE / SCHEDULE --- */
.schedule-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

.tab-btn {
    background: var(--white);
    border: 1px solid var(--glass-border);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.schedule-pane { display: none; max-width: 700px; margin: 0 auto; }
.schedule-pane.active { display: block; }

.schedule-row { display: flex; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--glass-border); }
.schedule-time { width: 180px; font-size: 1.1rem; font-weight: 700; color: var(--primary-color); }
.schedule-desc { font-size: 1.1rem; font-weight: 500; color: var(--text-color); }

/* --- VENUE SECTION --- */
.venue-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.map-box iframe { width: 100%; height: 350px; border: 0; border-radius: var(--radius-md); }

.venue-info { display: flex; flex-direction: column; justify-content: center; padding: 20px; }
.venue-info h3 { font-size: 1.8rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.venue-info h3 i { color: var(--primary-color); }
.venue-info p { color: var(--light-text); font-size: 1.1rem; margin-bottom: 30px; }

:root {
    /* --- Recolored to match Style 2's warm orange palette --- */
    --bg: #fff5f0;                              /* was #d6d8dc */
    --panel: rgba(255, 107, 0, 0.04);           /* was rgba(234,223,223,0.02) */
    --panel-border: rgba(255, 107, 0, 0.14);    /* was rgba(222,205,205,0.08) */
    --accent: #ff6b00;                          /* was #FF9900 */
    --accent-secondary: #ff8534;                /* new, from style 2 secondary */
    --accent-dim: rgba(255, 107, 0, 0.35);      /* was rgba(255,153,0,0.35) */
    --gradient-accent: linear-gradient(135deg, #ff6b00, #ff8534);
    --text: #2d2d2d;                            /* was #F5F5F0 (dark text for light bg) */
    --text-muted: #666666;                      /* was #7d7f86 */
    --text-faint: #8a8a8a;                      /* was #4a4c53 */
    --mono: 'JetBrains Mono', monospace;
    --display: 'Bebas Neue', sans-serif;
    --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    padding: 80px 6vw 100px;
}

/* --- ORGANIZERS / TEAM --- */
.team-header {
    max-width: 900px;
    margin-bottom: 60px;
}

.team-eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}

.team-title {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    letter-spacing: 1px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text);
}

.team-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
}

/* ---- Grid of team members ---- */
.organizers-grid {
    display: grid;
    gap: 60px;
    max-width: 1180px;
}

/* ---- One Driver Card ---- */
.profile-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: stretch;
}

/* ---- Photo stack ---- */
.profile-photo-stack {
    position: relative;
    min-height: 420px;
}

.profile-photo-stack .stack-layer {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(160deg, #ffe4d1, #ffd2b3); /* was dark #1c1c22/#0d0d10 */
    border: 1px solid var(--panel-border);
}
.profile-photo-stack .stack-layer:nth-child(1) {
    transform: rotate(-7deg) translateX(-14px);
    opacity: 0.5;
}
.profile-photo-stack .stack-layer:nth-child(2) {
    transform: rotate(-3deg) translateX(-6px);
    opacity: 0.75;
}

.profile-photo-main {
    position: relative;
    z-index: 2;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    background: linear-gradient(160deg, #ffffff, #fff0e6); /* was dark #23242b/#101114 */
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-sm, 0 2px 4px rgba(0,0,0,0.06));
}

.profile-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* placeholder shown when no photo is supplied */
.profile-photo-main .avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-dim);
}

.profile-photo-tag {
    position: absolute;
    bottom: 16px;
    left: 18px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(45, 45, 45, 0.55);
    padding: 4px 10px;
    border-radius: 4px;
    text-shadow: none;
}

/* ---- Telemetry data panel ---- */
.profile-panel {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--panel-border);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.08);
    clip-path: polygon(
        0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%,
        22px 100%, 0 calc(100% - 22px)
    );
}

/* corner brackets to sell the HUD feel */
.profile-panel::before,
.profile-panel::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--accent);
    opacity: 0.8;
}
.profile-panel::before {
    top: 10px; left: 10px;
    border-right: none;
    border-bottom: none;
}
.profile-panel::after {
    bottom: 10px; right: 10px;
    border-left: none;
    border-top: none;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--panel-border);
}
.panel-row .sector-tag { color: var(--accent); font-weight: 700; }

.panel-field {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--panel-border);
}
.panel-field:last-of-type { border-bottom: none; padding-bottom: 0; }

.panel-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}

.panel-name {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--text);
}

.panel-role {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-secondary);
}

.panel-directive {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 46ch;
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
}

.panel-socials {
    display: flex;
    gap: 22px;
}
.panel-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.panel-socials a i { color: var(--accent); font-size: 1rem; }
.panel-socials a:hover { color: var(--accent); }

.panel-status {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-faint);
}
.panel-status .dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3ddc84;
    margin-right: 6px;
    box-shadow: 0 0 6px #3ddc84;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .profile-card { grid-template-columns: 1fr; }
    .profile-photo-stack { min-height: 320px; }
    .profile-panel { padding: 26px 24px; }
}

@media (max-width: 480px) {
    body { padding: 56px 5vw 70px; }
    .panel-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}
/* --- FAQ SECTION --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--light-text);
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.95rem;
}
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-color); }
.faq-question i { transition: var(--transition); color: var(--light-text); }

/* --- SPONSORS --- */
.sponsors-space { display: flex; flex-direction: column; gap: 40px; text-align: center; }

.sponsor-tier h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.sponsor-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.sponsor-placeholder {
    background: var(--background-light);
    border: 1px solid var(--glass-border);
    padding: 20px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: rgba(0,0,0,0.2);
    font-size: 1.1rem;
    min-width: 160px;
}

/* --- REGISTRATION / CTA SECTION --- */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    color: var(--white);
}
.cta-section h2 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.cta-section p { font-size: 1.3rem; opacity: 0.9; margin-bottom: 40px; }
.cta-section .btn-secondary { background: var(--white); color: var(--primary-color); border: none; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.8); color: var(--white); }
.cta-section .btn-outline:hover { background: var(--white); color: var(--primary-color); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.whatsapp-float:hover { background-color: #128C7E; transform: translateY(-5px); }

/* --- FOOTER --- */
footer, .footer {
    background: var(--text-color);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
    text-align: center;
    font-size: 0.9rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}
.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
.footer-links a { color: rgba(255,255,255,0.6); display: block; padding: 0.4rem 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-color); transform: translateX(4px); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: flex-start; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,107,0,0.15); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary-color); color: var(--white); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card.recommended { transform: scale(1); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero .tagline { font-size: 1.2rem; }
    .about-layout, .prizes-main-grid, .prizes-sub-grid, .venue-layout,
    .organizers-grid, .team-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height); left: -100%;
        width: 100%; height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        padding: 40px 0;
        transition: 0.3s ease-in-out;
    }
    .nav-menu.active { left: 0; }
    .menu-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .services-grid { grid-template-columns: 1fr; }
    .countdown-container { gap: 10px; flex-wrap: wrap; }
    .countdown-box { min-width: 75px; padding: 10px; }
    .countdown-time { font-size: 1.8rem; }
    .schedule-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .schedule-time { width: auto; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}