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

section {
    padding: 80px 0;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0B1C2D;
    color: #fff;
    padding-top: 80px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(11, 28, 45, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.logo img {
    height: 72px;
}

.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    color: #d1d5db;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.header-nav a:hover {
    color: #C9A24D;
}

.btn-header {
    background: #C9A24D;
    color: #0B1C2D;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.site-container {
    padding: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: #132e41;
    padding: 20px;
    border-radius: 8px;
}

.card h3 {
    color: #C9A24D;
}

.site-footer {
    background: #132e41;
    text-align: center;
    padding: 20px;
}
.hero {
    background: linear-gradient(
        rgba(11,28,45,.88),
        rgba(11,28,45,.88)
    ),
    url('https://img.freepik.com/free-photo/postponed-sports-event-objects-box-with-copy-space_23-2148596867.jpg?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;

    padding: 160px 0 120px;
}

.hero-inner {
    max-width: 700px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #C9A24D;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 30px;
}

.btn-primary {
    background: #C9A24D;
    color: #0B1C2D;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: 1px solid #C9A24D;
    color: #C9A24D;
    padding: 12px 24px;
    text-decoration: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.service-card, .card {
    background: #132e41;
    padding: 25px;
    border-radius: 8px;
}

.stats {
    background: #132e41;
    padding: 60px 40px;
}

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

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

.stat-box strong {
    font-size: 36px;
    color: #C9A24D;
}

.why-list {
    max-width: 600px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.why-list li {
    margin: 10px 0;
    font-size: 18px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #132e41;
    border-radius: 10px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-card .content {
    padding: 20px;
}

.service-card h3 {
    font-size: 18px;
    color: #C9A24D;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #d1d5db;
}
.simple-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.simple-item {
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.simple-item h4 {
    font-size: 16px;
    color: #C9A24D;
    margin-bottom: 6px;
}

.simple-item span {
    font-size: 13px;
    color: #9ca3af;
}
/* ===== DESKTOP LAYOUT RESET ===== */

section {
    position: relative;
}

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

/* ===== HERO GRID ===== */

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-visual img {
    width: 100%;
    border-radius: 14px;
}

/* ===== SERVICES ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===== METRICS ===== */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-box {
    background: #132e41;
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
}

.metric-box span {
    font-size: 36px;
    color: #C9A24D;
    font-weight: 600;
    display: block;
}

.metric-box small {
    color: #d1d5db;
    font-size: 14px;
}

/* ===== FEATURED (EVENT / LEAGUE) ===== */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.featured-card {
    background: #132e41;
    border-radius: 14px;
    overflow: hidden;
}

.featured-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-card h4 {
    padding: 16px 16px 4px;
    font-size: 16px;
    color: #C9A24D;
}

.featured-card span {
    padding: 0 16px 16px;
    display: block;
    font-size: 13px;
    color: #9ca3af;
}

/* ===== CTA ===== */

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .metrics-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
.site-footer {
    background: #0B1C2D;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #C9A24D;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-col a,
.footer-col span,
.footer-col p {
    color: #9ca3af;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #6b7280;
}
@media (max-width: 992px) {

    .header-nav {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}