:root {
    --primary-color: #69D643;
    --dark-bg: #000000;
    --darker-bg: #111111;
    --grey-text: #a0a0a0;
    --white: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

a.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Search */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.4rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.search-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.search-toggle:hover { color: var(--primary-color); }

.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, border-color 0.35s ease;
    border-bottom: 2px solid transparent;
}

.search-panel.open {
    max-height: 160px;
    border-bottom-color: var(--primary-color);
}

.search-panel-inner {
    display: flex;
    align-items: center;
    padding: 5.5rem 5% 1.5rem;
    gap: 1rem;
}

.search-form {
    display: flex;
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    border-bottom: 2px solid #333;
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-bottom-color: var(--primary-color);
}

.search-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-form input::placeholder {
    color: #444;
}

.search-form button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0 0.5rem 1rem;
    transition: color 0.2s;
}

.search-form button:hover { color: var(--white); }

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

.search-close:hover { color: var(--white); }

/* Dropdown */
nav li {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #111;
    border-top: 2px solid var(--primary-color);
    min-width: 200px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    text-align: left;
}

.has-dropdown:hover .dropdown {
    display: flex;
}

.dropdown li {
    border-bottom: 1px solid #222;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    background-image: url('../assets/hero_1.jpg');
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--grey-text);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero League Strip */
.hero-leagues {
    margin-top: 2.5rem;
}

.hero-leagues-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey-text);
    margin-bottom: 0.75rem;
}

.hero-leagues-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.hero-leagues-row img {
    height: 110px;
    width: auto;
    mix-blend-mode: screen;
    transition: transform 0.2s ease;
}

.hero-leagues-row img:hover {
    transform: scale(1.1);
}

/* Programs Section */
.programs {
    padding: 6rem 5%;
    background-color: var(--darker-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.section-title span {
    color: var(--primary-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--dark-bg);
    border-bottom: 4px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-text {
    color: var(--grey-text);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sponsors Strip */
.sponsors-strip {
    padding: 3.5rem 5%;
    background-color: var(--dark-bg);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.sponsors-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #444;
    margin-bottom: 1.5rem;
}

.sponsors-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.6);
}

.sponsor-logo:hover {
    color: var(--white);
    filter: grayscale(0%) brightness(1);
}

.sponsor-logo svg {
    height: 55px;
    width: auto;
}

.sponsor-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.sponsor-text-logo {
    filter: none;
}

.soccer-com-mark {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #555;
    transition: color 0.3s ease;
}

.soccer-com-mark span {
    color: #444;
    font-weight: 600;
}

.sponsor-text-logo:hover .soccer-com-mark,
.sponsor-text-logo:hover .soccer-com-mark span {
    color: var(--white);
}

/* Social Channels Section */
.social-channels {
    padding: 2rem 5%;
    background-color: var(--darker-bg);
    border-top: 1px solid #1e1e1e;
}

.follow-us-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-text);
    margin-bottom: 0.75rem;
}

.channels-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.channel-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s ease;
}

.channel-card svg {
    width: 22px;
    height: 22px;
    transition: transform 0.25s ease;
}

.channel-card:hover svg {
    transform: scale(1.2);
}

/* Platform accent colors on hover */
.channel-instagram:hover { border-color: #e1306c; }
.channel-instagram:hover .channel-platform { color: #e1306c; }
.channel-instagram svg { color: #e1306c; }

.channel-facebook:hover { border-color: #1877f2; }
.channel-facebook:hover .channel-platform { color: #1877f2; }
.channel-facebook svg { color: #1877f2; }

.channel-x:hover { border-color: #aaa; }
.channel-x svg { color: var(--white); }

.channel-youtube:hover { border-color: #ff0000; }
.channel-youtube:hover .channel-platform { color: #ff0000; }
.channel-youtube svg { color: #ff0000; }

/* Social Feed Section */
.social-feed {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
}

.social-feed-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-feed-header svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.insta-follow-link {
    display: block;
    text-align: center;
    color: var(--grey-text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    transition: color 0.2s;
}

.insta-follow-link:hover { color: var(--primary-color); }

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Instagram Post Card */
.insta-post {
    background-color: var(--darker-bg);
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
}

.insta-post-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
}

.insta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.insta-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--dark-bg);
    background-image: url('../brand/APEX Badge.png');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--dark-bg);
}

.insta-user { flex: 1; }

.insta-username {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    line-height: 1.2;
}

.insta-location {
    display: block;
    font-size: 0.7rem;
    color: var(--grey-text);
}

.insta-more {
    color: var(--grey-text);
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.insta-post-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.insta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px 6px;
}

.insta-left-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.insta-actions svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.8;
    cursor: pointer;
    transition: stroke 0.2s;
    display: block;
}

.insta-actions svg:hover { stroke: var(--primary-color); }

.insta-likes {
    padding: 0 14px 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.insta-caption {
    padding: 0 14px 12px;
    font-size: 0.8rem;
    color: var(--grey-text);
    line-height: 1.5;
}

.insta-caption strong { color: var(--white); }
.insta-hashtags { color: #5b9bd5; }

.insta-time {
    padding: 0 14px 10px;
    font-size: 0.68rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-feed-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.view-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.view-insta-btn:hover { opacity: 0.85; }

/* ── Inner Page Layout ─────────────────────────────── */
.inner-hero {
    padding: 9rem 5% 4rem;
    background: var(--darker-bg);
    border-bottom: 3px solid var(--primary-color);
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--grey-text);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb span { color: var(--primary-color); margin: 0 0.5rem; }

.inner-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.inner-hero p {
    color: var(--grey-text);
    font-size: 1.1rem;
    margin-top: 0.75rem;
    max-width: 600px;
}

.inner-content {
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.inner-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #222;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content h2 span { color: var(--primary-color); }

.inner-content p {
    color: var(--grey-text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.inner-content strong { color: var(--white); }

.inner-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.inner-content a:hover { text-decoration: underline; }

/* Pillar cards */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar-card {
    background: var(--darker-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1.75rem;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--darker-bg);
    border-bottom: 4px solid #333;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s;
}

.pricing-card:hover { border-bottom-color: var(--primary-color); }

.pricing-card .price-format {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-text);
    margin-bottom: 0.5rem;
}

.pricing-card .price-age {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.pricing-card .price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
}

/* Venue cards */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.venue-card {
    background: var(--darker-bg);
    padding: 1.75rem;
    border-top: 3px solid #333;
}

.venue-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.venue-card .venue-location {
    font-size: 0.8rem;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.venue-card .venue-ages {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Tournament links row */
.tourney-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tourney-links a {
    padding: 0.7rem 1.4rem;
    border: 1px solid #333;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: border-color 0.2s, color 0.2s;
}

.tourney-links a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.tourney-links a.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg) !important;
}

.tourney-links a.primary:hover {
    background: transparent;
    color: var(--primary-color) !important;
}

/* Tryout schedule table */
.tryout-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.tryout-table th {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.tryout-table td {
    padding: 0.75rem 1rem;
    color: var(--grey-text);
    border-bottom: 1px solid #1e1e1e;
}

.tryout-table tr:hover td { background: #111; color: var(--white); }

/* BYGA page */
.byga-card {
    background: var(--darker-bg);
    border: 1px solid #222;
    border-top: 4px solid var(--primary-color);
    padding: 3rem;
    max-width: 560px;
    text-align: center;
}

.byga-card h2 {
    border: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

.byga-launch-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: var(--dark-bg) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    text-decoration: none !important;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
    transition: background 0.2s;
}

.byga-launch-btn:hover { background: var(--white); }

/* Footer */
footer {
    background-color: #0a0a0a;
    border-top: 3px solid var(--primary-color);
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-badge {
    text-align: center;
}

.footer-badge img {
    height: 110px;
    opacity: 0.9;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    color: var(--grey-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--primary-color); }

.footer-contact .footer-divider {
    display: block;
    color: #333;
    margin: 0.4rem 0;
    font-size: 0.8rem;
}

.footer-contact-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid #333;
    color: var(--grey-text) !important;
    font-size: 0.8rem !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    border-radius: 3px;
    transition: border-color 0.2s, color 0.2s !important;
}

.footer-contact-btn:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.footer-copy {
    text-align: right;
    color: #444;
    font-size: 0.75rem;
    line-height: 1.8;
}

.footer-copy a {
    color: #444;
    text-decoration: none;
}

.footer-copy a:hover { color: var(--grey-text); }

@media (max-width: 768px) {
    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-badge { text-align: center; }
    .footer-contact { text-align: center; }
    .footer-copy { text-align: center; }
}

/* Intercom Button */
.intercom-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(105, 214, 67, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.intercom-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        display: grid;
        grid-template-areas: "left logo right" "nav nav nav";
        grid-template-columns: 44px 1fr 44px;
        background: rgba(0,0,0,0.95);
        padding: 0.75rem 1rem;
        gap: 0.5rem 0;
    }
    header .logo {
        grid-area: logo;
        text-align: center;
        justify-self: center;
        align-self: center;
    }
    .search-toggle {
        grid-area: right;
        justify-self: end;
        align-self: center;
    }
    header .cta-btn {
        display: none;
    }
    nav {
        grid-area: nav;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-leagues-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-leagues-row img {
        height: 70px;
    }
}
