:root {
    --primary: #FF6B00;
    --secondary: #FF8534;
    --accent: #FFA066;

    --dark-navy: #FFFFFF;
    --darker-navy: #FFF5F0;
    --deepest-navy: #2D2D2D;

    --card-light: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-light: #F8FAFC;
    --text-muted: #666666;

    --glass-bg: rgba(255, 107, 0, 0.04);
    --glass-border: rgba(255, 107, 0, 0.14);

    --gradient-orange: linear-gradient(135deg, var(--secondary) 0%, #e05621 100%);
    --gradient-purple: linear-gradient(45deg, #FFA500, #FFD700);
    --gradient-title: linear-gradient(135deg, #2D2D2D 0%, var(--text-muted) 100%);

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-navy);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle, .section-description {
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary, .btn-orange {
    background: var(--gradient-orange);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}
.btn-primary:hover, .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-secondary, .btn-white {
    background: var(--card-light);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}
.btn-secondary:hover, .btn-white:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline, .btn-purple {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    border: none;
}
.btn-outline:hover, .btn-purple:hover {
    background: #e05a00;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    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 infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 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;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}
.logo span { color: var(--accent); }
.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}
.logo img:hover { transform: scale(1.05); }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-link:hover { color: var(--primary); }

.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    width: 180px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: 0.2s;
}
.dropdown-item a:hover { background: var(--primary); color: var(--text-light); }

.nav-btn, .nav-cta {
    background: var(--secondary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    transition: 0.3s;
}
.nav-btn:hover, .nav-cta:hover { background: #e05621; transform: translateY(-1px); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 40px) 20px 60px;
    background:
        linear-gradient(rgba(255, 248, 243, 0.92), rgba(255, 255, 255, 0.96)),
        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 160, 102, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 5; max-width: 900px; }

.hero-logo-box, .hero-mini {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #2D2D2D 60%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .tagline, .hero-tagline {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 35px;
    opacity: 1;
}

.hero-meta, .hero-meta-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-bottom: 45px;
    padding: 15px 30px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-meta span, .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}
.hero-meta span i, .hero-meta-item i { color: var(--primary); font-size: 1.2rem; }

.hero-cta, .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- STATS ROW --- */
.stats-grid, .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-section {
    background: var(--darker-navy);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 0;
}

.stat-card, .stat-box {
    background: transparent;
}

.stat-number, .stat-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    display: block;
}
.stat-label, .stat-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- COUNTDOWN --- */
.countdown-section {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.countdown-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 700;
}

.countdown-container, .countdown-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.countdown-box, .countdown-card {
    background: rgba(255, 107, 0, 0.08);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
    border-radius: var(--radius-md);
    min-width: 110px;
    padding: 20px 10px;
}

.countdown-time, .countdown-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}
.countdown-label, .countdown-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* --- WHY PARTICIPATE / HIGHLIGHTS --- */
.why { background: var(--darker-navy); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
}
.why-card:hover {
    border-color: var(--primary);
    background: rgba(255, 160, 102, 0.06);
    transform: translateY(-4px);
}
.why-icon, .why-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Light "highlight" style cards for contrast sections (prizes, timeline etc.) */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.highlight-card {
    background: var(--card-light);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid var(--glass-border);
}
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
}
.highlight-icon { font-size: 2.8rem; margin-bottom: 20px; display: inline-block; }
.highlight-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: #2D2D2D; }
.highlight-card p { color: #666666; font-size: 0.95rem; }

/* --- ABOUT SECTION --- */
.about { background: var(--darker-navy); }

.about-layout, .about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-image img, .about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--glass-border);
}

.about-text h2, .about-desc h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.about-text p, .about-desc p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* --- 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-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    flex-shrink: 0;
}

.timeline-content {
    background: var(--card-light);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    margin-left: 30px;
    width: 100%;
}
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 5px; color: var(--text-dark); }
.timeline-content p { color: var(--text-muted); }

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 25px; top: 0;
    height: 90%; width: 2px;
    background: var(--glass-border);
    z-index: 1;
}

/* --- FEATURED EVENTS / PRIZES --- */
.total-prize-box {
    text-align: center;
    background: rgba(255, 107, 0, 0.06);
    border: 2px dashed var(--primary);
    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(--text-muted); text-transform: uppercase; }
.total-prize-box .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.prizes-main-grid, .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.prize-card-premium, .event-card {
    background: var(--card-light);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.prize-card-premium { padding: 40px; border: 1px solid var(--glass-border); }
.prize-card-premium:hover, .event-card:hover { transform: translateY(-6px); }

.prize-card-premium.winner { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15); border: 2px solid #FFD700; }
.prize-card-premium.runner { box-shadow: 0 10px 30px rgba(148, 163, 184, 0.2); border: 2px solid #c0c0c0; }

.prize-badge-icon { font-size: 3rem; margin-bottom: 15px; }
.prize-card-premium.winner .prize-badge-icon { color: #d1a800; }
.prize-card-premium.runner .prize-badge-icon { color: #94a3b8; }

.prize-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 10px; color: #2D2D2D; }
.prize-cash { font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 25px; }

.prize-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #E2E8F0;
    padding-top: 25px;
}
.prize-perks li { display: flex; align-items: center; gap: 8px; color: #475569; }
.prize-perks li i { color: #10B981; }

.prizes-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.prize-card-mini {
    background: var(--card-light);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}
.prize-card-mini:hover { transform: translateY(-4px); }
.prize-card-mini i { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; }
.prize-card-mini h4 { font-size: 1.1rem; margin-bottom: 8px; color: #2D2D2D; }
.prize-card-mini .cash { font-size: 1.5rem; font-weight: 700; color: #2D2D2D; }

/* Event-card specific pieces (kept for compatibility) */
.event-img-header {
    height: 200px;
    background: #E2E8F0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.event-card:nth-child(1) .event-img-header { background: linear-gradient(135deg, #3B82F6, #1E40AF); }
.event-card:nth-child(2) .event-img-header { background: linear-gradient(135deg, var(--secondary), #991B1B); }
.event-card:nth-child(3) .event-img-header { background: linear-gradient(135deg, #10B981, #065F46); }

.event-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
.event-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; color: #2D2D2D; }
.event-subtitle { font-size: 0.9rem; font-weight: 600; color: var(--secondary); margin-bottom: 15px; text-transform: uppercase; }
.event-details-list { margin-bottom: 25px; font-size: 0.95rem; color: #475569; }
.event-details-list li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.event-details-list i { color: var(--primary); width: 16px; }
.event-pool-box {
    background: #F1F5F9;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
.event-pool-box span { color: #065F46; font-size: 1.1rem; }

/* --- REGISTRATION / PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--card-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.pricing-card.recommended {
    border: 2px solid var(--secondary);
    background: rgba(255, 133, 52, 0.05);
    transform: scale(1.05);
}
.badge-recommended {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--text-light);
    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(--text-muted); }
.pricing-card .price { font-size: 3rem; font-weight: 800; margin-bottom: 25px; color: var(--text-dark); }

.pricing-rule {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: var(--darker-navy);
    padding: 15px;
    border-radius: var(--radius-sm);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
}

/* --- SCHEDULE / EVENT DAY --- */
.schedule-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.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(--secondary); }
.schedule-desc { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }

/* --- 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(--text-muted);
    margin-bottom: 20px;
}

.sponsor-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.sponsor-placeholder, .sponsor-node {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    padding: 20px 45px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    user-select: none;
}

.slider-container { width: 100%; overflow: hidden; padding: 20px 0; position: relative; }
.logo-slider { display: flex; gap: 40px; width: max-content; animation: infiniteScroll 25s linear infinite; }

/* --- GALLERY --- */
.gallery { background: var(--darker-navy); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--glass-border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.2rem; font-weight: 700; color: var(--text-light); }
.gallery-center-btn { text-align: center; }

/* --- VENUE --- */
.venue-layout, .venue-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--darker-navy);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.map-box iframe, .map-frame iframe { width: 100%; height: 350px; border: 0; border-radius: var(--radius-md); }

.venue-info, .venue-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
}
.venue-info h3, .venue-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}
.venue-info h3 i, .venue-details h3 i { color: var(--secondary); }
.venue-info p, .venue-details p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }

/* --- ORGANIZERS / TEAM --- */
.organizers-grid, .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.profile-card, .team-card {
    background: var(--card-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.profile-card:hover, .team-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.profile-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--darker-navy);
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    border: 2px solid var(--glass-border);
}
.profile-card h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--text-dark); }
.profile-card .role { color: var(--secondary); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }

.profile-socials, .social-links { display: flex; justify-content: center; gap: 15px; }

.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--text-dark);
}
.social-icon:hover { background: var(--primary); color: var(--text-light); }

/* --- FAQ --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    background: var(--card-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.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-dark);
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-muted);
    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); }
.faq-question i { transition: 0.3s; }

/* --- CONTACT --- */
.contact { background: var(--darker-navy); padding: 60px 0; }

.contact-layout {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}
.contact-channel { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-channel .icon-box {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
    color: var(--text-dark);
}
.contact-channel:hover .icon-box { background: var(--primary); color: var(--text-light); transform: translateY(-3px); }
.contact-channel span { font-weight: 600; font-size: 1.05rem; }

/* --- REGISTRATION / CTA SECTION --- */
.cta-section {
    background: var(--gradient-orange);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    color: var(--text-light);
}
.cta-section h2 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.cta-section p { font-size: 1.3rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }

/* --- FOOTER --- */
footer {
    background: var(--deepest-navy);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links { display: flex; gap: 25px; justify-content: center; }
.footer-links a:hover { color: var(--text-light); }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .stats-grid, .stats-wrapper { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
    .highlights-grid, .events-grid, .gallery-grid, .prizes-main-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card.recommended { transform: scale(1); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero .tagline, .hero-tagline { font-size: 1.1rem; }
    .about-layout, .about-split, .venue-layout, .venue-split,
    .organizers-grid, .team-grid, .prizes-main-grid, .prizes-sub-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height); left: -100%;
        width: 100%; height: calc(100vh - var(--header-height));
        background: var(--dark-navy);
        flex-direction: column;
        padding: 40px 0;
        transition: 0.4s ease-in-out;
    }
    .nav-menu.active { left: 0; }
    .dropdown-menu {
        position: relative; top: 0; width: 100%;
        opacity: 1; visibility: visible; transform: none;
        background: transparent; box-shadow: none; text-align: center;
    }
    .menu-toggle { display: block; }
    .stats-grid, .stats-wrapper { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid, .events-grid, .gallery-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-meta, .hero-meta-grid { border-radius: 20px; }
    .hero-cta, .hero-actions { flex-direction: column; gap: 12px; }
    .countdown-container, .countdown-grid { gap: 10px; flex-wrap: wrap; }
    .countdown-box, .countdown-card { min-width: 80px; padding: 12px; }
    .countdown-time, .countdown-num { font-size: 2rem; }
    .schedule-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .schedule-time { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}