/* ===== Small Stadiums — Landing Page ===== */
:root {
    --maize: #FFCB05;
    --blue: #00274C;
    --dark: #0a0e1a;
    --darker: #05080f;
    --light: #f8f9fa;
    --card: #ffffff;
    --border: #e5e7eb;
    --text: #1f2937;
    --muted: #6b7280;
    --green: #10b981;
    --scarlet: #BB0000;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: var(--dark);
    color: #ffffff;
    line-height: 1.5;
}

/* ─── Header ─── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--maize);
    padding: 14px 24px;
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    font-size: 24px; font-weight: 900; color: var(--maize);
    letter-spacing: -0.5px;
}
.tagline {
    font-size: 14px; color: var(--muted); font-weight: 500;
}

/* ─── Hero ─── */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at center bottom, rgba(255,203,5,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at center top, rgba(0,39,76,0.3) 0%, transparent 50%),
        var(--dark);
}
.hero h1 {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -2px; margin-bottom: 20px;
    color: #ffffff;
}
.highlight { color: var(--maize); }
.hero p {
    font-size: 18px; color: var(--muted);
    max-width: 600px; margin: 0 auto;
    line-height: 1.7;
}

/* ─── Stadiums Grid ─── */
.stadiums-section {
    padding: 80px 24px;
    max-width: 1000px; margin: 0 auto;
    text-align: center;
}
.stadiums-section h2 {
    font-size: 32px; font-weight: 800;
    color: var(--maize); margin-bottom: 48px;
}
.stadiums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

/* Stadium Card */
.stadium-card {
    position: relative;
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    border: 2px solid #1e293b;
    border-radius: 20px;
    padding: 40px 32px 32px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.stadium-card.live {
    cursor: pointer;
    border-color: var(--maize);
}
.stadium-card.live:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255,203,5,0.2);
    border-color: var(--maize);
}
.stadium-card.coming-soon {
    opacity: 0.7;
    border-color: #374151;
}

/* Badge */
.card-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.live-badge {
    background: var(--green); color: #ffffff;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.soon-badge {
    background: #374151; color: var(--muted);
}

/* Card Content */
.card-icon {
    font-size: 64px; margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.stadium-card h3 {
    font-size: 24px; font-weight: 800;
    margin-bottom: 4px;
}
.card-nickname {
    font-size: 16px; color: var(--muted);
    font-style: italic; margin-bottom: 24px;
}
.card-stats {
    display: flex; gap: 32px; justify-content: center;
    margin-bottom: 28px;
}
.card-stat { text-align: center; }
.stat-number {
    display: block; font-size: 18px; font-weight: 800; color: var(--maize);
}
.stat-label {
    font-size: 12px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1px;
}

/* Card CTA */
.card-cta {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--maize) 0%, #e5b502 100%);
    color: var(--blue);
    font-weight: 800; font-size: 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
}
.stadium-card.live:hover .card-cta {
    transform: scale(1.03);
}
.soon-cta {
    background: #1e293b;
    color: var(--muted);
}

/* ─── How It Works ─── */
.how-section {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}
.how-section h2 {
    font-size: 28px; font-weight: 800;
    color: var(--maize); margin-bottom: 40px;
}
.steps-row {
    display: flex; gap: 24px; justify-content: center;
    flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.step-card {
    background: #111827; border: 1px solid #1e293b;
    border-radius: 16px; padding: 32px 24px;
    flex: 1; min-width: 220px; max-width: 280px;
}
.step-num {
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: var(--maize); color: var(--blue);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-weight: 900; font-size: 22px;
}
.step-card h3 {
    font-size: 18px; font-weight: 700;
    margin-bottom: 8px; color: #ffffff;
}
.step-card p {
    font-size: 14px; color: var(--muted); line-height: 1.6;
}

/* ─── More Stadiums ─── */
.more-section {
    padding: 80px 24px;
    text-align: center;
    max-width: 800px; margin: 0 auto;
}
.more-section h2 {
    font-size: 28px; font-weight: 800;
    color: #ffffff; margin-bottom: 16px;
}
.more-section > p {
    font-size: 16px; color: var(--muted);
    margin-bottom: 32px;
}
.more-logos {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
}
.more-item {
    padding: 8px 20px;
    background: #111827; border: 1px solid #1e293b;
    border-radius: 30px;
    font-size: 14px; font-weight: 600; color: var(--muted);
}

/* ─── Footer ─── */
.footer {
    padding: 40px 24px; text-align: center;
    border-top: 1px solid #1e293b;
}
.footer p { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.footer strong { color: var(--maize); }
.footer-note { font-size: 12px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 4px; }
    .stadiums-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .card-stats { flex-direction: column; gap: 12px; }
    .steps-row { flex-direction: column; align-items: center; }
}
