:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --accent: #f7b731;
    --dark: #0f0f1a;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --text: #e8e8e8;
    --text-muted: #a0a0b0;
    --white: #ffffff;
    --border: rgba(255,255,255,0.08);
    --glass: rgba(255,255,255,0.03);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

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

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15,15,26,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo-accent { color: var(--primary); }

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-link {
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230,57,70,0.5);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-cta {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    color: var(--white);
}
.btn-cta-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--dark-2);
}
.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-title h2 span { color: var(--primary); }

/* ============ CARDS / FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: rgba(230,57,70,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(230,57,70,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    counter-reset: step;
}
.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}
.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(230,57,70,0.3);
}
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============ SPORTS ============ */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.sport-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: all var(--transition);
}
.sport-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.sport-icon { font-size: 2.2rem; margin-bottom: 10px; }
.sport-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

/* ============ WHY CHOOSE ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
}
.cta-banner .btn {
    position: relative;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--glass);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ TABLE ============ */
.table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.table th {
    color: var(--white);
    font-weight: 700;
    background: rgba(255,255,255,0.03);
}
.table td { color: var(--text-muted); }
.table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============ FORM ============ */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ============ FLOATING CTA ============ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
    text-decoration: none;
}
.floating-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: var(--white);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-tagline {
    color: var(--text-muted);
    margin: 16px 0 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-logo { margin-bottom: 8px; }
.footer-links h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}
.footer-disclaimer { font-size: 0.8rem !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav { 
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15,15,26,0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav.open { display: block; }
    .nav-list {
        flex-direction: column;
        gap: 4px;
    }
    .nav-link {
        display: block;
        padding: 12px 16px;
    }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .section { padding: 60px 0; }
    .cta-banner { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ PAGE SPECIFIC ============ */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }

.content-area {
    max-width: 800px;
    margin: 0 auto;
}
.content-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 16px;
}
.content-area h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 24px 0 12px;
}
.content-area p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}
.content-area ul, .content-area ol {
    color: var(--text-muted);
    padding-left: 24px;
    margin-bottom: 16px;
}
.content-area li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.content-area strong { color: var(--white); }
