:root {
    --peach-50: #fff4ef;
    --peach-100: #ffe8dc;
    --peach-200: #ffd4bf;
    --peach-300: #ffb996;
    --peach-400: #ff9b6d;
    --peach-500: #f28557;
    --peach-700: #bf5d35;
    --ink-900: #111318;
    --ink-800: #1a202b;
    --ink-700: #2c3342;
    --ink-500: #677083;
    --ink-300: #c6ccd8;
    --white: #ffffff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --shadow-lg: 0 30px 80px rgba(20, 23, 31, 0.16);
    --shadow-md: 0 14px 38px rgba(20, 23, 31, 0.1);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--ink-800);
    background:
        radial-gradient(circle at top left, rgba(242, 133, 87, 0.15), transparent 30%),
        radial-gradient(circle at top right, rgba(17, 19, 24, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, #ffffff 42%, #fff4ef 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-shell {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0f1117, #1a202b 60%, #402319);
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-mark {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.3rem;
    border-radius: 999px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.topbar {
    padding: 0.7rem 0;
    background: rgba(17, 19, 24, 0.92);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.topbar-copy i {
    color: var(--peach-300);
    margin-right: 0.45rem;
}

.topbar-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.topbar-links a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .main-nav {
    box-shadow: var(--shadow-md);
}

.main-nav {
    background: rgba(17, 19, 24, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.12rem;
}

.brand-mark strong,
.brand-mark small {
    display: block;
}

.brand-mark strong {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
    font-size: 1rem;
}

.brand-mark small {
    font-size: 0.78rem;
    opacity: 0.72;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78) !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--white) !important;
}

.btn-peach {
    background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
    border: none;
    color: var(--white);
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 600;
    box-shadow: 0 16px 34px rgba(242, 133, 87, 0.28);
    transition: var(--transition);
}

.btn-peach:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(242, 133, 87, 0.34);
}

.btn-outline-light {
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
}

.btn-soft {
    background: rgba(17, 19, 24, 0.06);
    border-radius: 999px;
    padding: 0.82rem 1.3rem;
    color: var(--ink-800);
    font-weight: 600;
}

.hero-shell,
.page-hero {
    position: relative;
    padding: 7rem 0 5rem;
    color: var(--white);
    overflow: hidden;
}

.hero-shell::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(14, 16, 23, 0.96) 0%, rgba(14, 16, 23, 0.78) 48%, rgba(242, 133, 87, 0.35) 100%),
        var(--hero-image, url('../images/stadium-abstract.svg')) center/cover no-repeat;
}

.hero-shell::after,
.page-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -90px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}

.hero-shell > .container,
.page-hero > .container {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.hero-title,
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin: 1.2rem 0;
    max-width: 10ch;
}

.hero-copy,
.page-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 1.8rem;
}

.hero-actions .btn-soft {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-actions .btn-soft:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.hero-quickline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.hero-quickline span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
    gap: 2rem;
    align-items: end;
}

.hero-grid-home {
    align-items: center;
}

.hero-panel,
.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.hero-panel {
    padding: 1.5rem;
}

.hero-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hero-panel-season {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72);
}

.next-match-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.hero-fixture-meta {
    color: rgba(255, 255, 255, 0.76);
}

.hero-scoreline {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1rem 0 1.3rem;
}

.hero-mini-grid div {
    padding: 0.9rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mini-grid strong,
.hero-mini-grid span {
    display: block;
}

.hero-mini-grid strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.35rem;
}

.hero-mini-grid span {
    color: var(--white);
    font-size: 0.94rem;
}

.hero-stat-grid,
.stats-grid,
.home-grid-3,
.footer-grid,
.page-grid,
.cards-grid {
    display: grid;
    gap: 1.25rem;
}

.hero-stat-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
}

.hero-stat-grid-home {
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat,
.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.hero-stat strong,
.stat-card strong,
.counter {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
}

.section-shell {
    padding: 5.5rem 0;
}

.section-shell.section-compact {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin: 0.3rem 0 0;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin: 0;
    max-width: 560px;
    color: var(--ink-500);
    line-height: 1.8;
}

.section-label {
    color: var(--peach-700);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-pulse-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.25rem;
}

.news-stack {
    display: grid;
    gap: 1.25rem;
}

.news-featured-card .card-media {
    aspect-ratio: 16 / 10;
}

.news-featured-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    max-width: 14ch;
}

.match-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.standings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 1.25rem;
    align-items: stretch;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.news-card,
.player-card,
.staff-card,
.fixture-card,
.sponsor-card,
.gallery-card,
.content-card,
.table-shell,
.info-panel,
.match-countdown,
.feature-block {
    background: var(--surface-strong);
    border: 1px solid rgba(17, 19, 24, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.news-card,
.player-card,
.staff-card,
.gallery-card,
.sponsor-card,
.content-card {
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover,
.player-card:hover,
.staff-card:hover,
.gallery-card:hover,
.sponsor-card:hover,
.content-card:hover {
    transform: translateY(-6px);
}

.card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(150deg, rgba(242, 133, 87, 0.86), rgba(17, 19, 24, 0.95)),
        url('../images/placeholder-card.svg') center/cover no-repeat;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.35rem;
}

.meta-row {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--ink-500);
    margin-bottom: 0.8rem;
}

.news-card h3,
.player-card h3,
.staff-card h3,
.gallery-card h3,
.sponsor-card h3,
.content-card h3,
.fixture-card h3,
.cta-banner h2,
.info-panel h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.player-meta,
.staff-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-500);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.player-stats span {
    display: block;
    padding: 0.8rem 0.55rem;
    border-radius: 16px;
    background: var(--peach-50);
    text-align: center;
    color: var(--ink-700);
    font-size: 0.9rem;
}

.player-stats strong {
    font-size: 1.1rem;
}

.fixture-card,
.match-countdown,
.table-shell,
.info-panel,
.feature-block {
    padding: 1.4rem;
}

.feature-block,
.info-panel {
    position: relative;
    overflow: hidden;
}

.feature-block::before,
.info-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--peach-500), rgba(242, 133, 87, 0));
    opacity: 0.8;
}

.feature-block > *,
.info-panel > * {
    position: relative;
    z-index: 1;
}

.fixture-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0.8rem 0 1rem;
    color: var(--ink-500);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-scheduled {
    color: #0f5132;
    background: #d1e7dd;
}

.status-live {
    color: #842029;
    background: #f8d7da;
}

.status-finished {
    color: #055160;
    background: #cff4fc;
}

.status-postponed,
.status-default {
    color: #664d03;
    background: #fff3cd;
}

.match-scoreline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(120deg, var(--peach-50), rgba(242, 133, 87, 0.08));
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    margin: 1rem 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.countdown-grid div {
    text-align: center;
    padding: 1rem 0.55rem;
    border-radius: 18px;
    background: var(--peach-50);
}

.countdown-grid strong {
    display: block;
    font-size: 1.45rem;
}

.table-shell {
    overflow: hidden;
}

.custom-table {
    margin: 0;
}

.custom-table th {
    background: #0f1117;
    color: var(--white);
    border: none;
    font-size: 0.87rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.custom-table td {
    vertical-align: middle;
    border-color: rgba(17, 19, 24, 0.06);
}

.highlight-row {
    background: linear-gradient(90deg, rgba(242, 133, 87, 0.14), rgba(255, 255, 255, 0.92));
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(242, 133, 87, 0.12);
    color: var(--peach-700);
    font-weight: 600;
}

.cta-banner {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    background: linear-gradient(120deg, #10131a, #211912 50%, #f28557);
    color: var(--white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: auto -40px -80px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gallery-card button {
    all: unset;
    display: block;
    cursor: pointer;
}

.gallery-card .card-body {
    padding-bottom: 1.2rem;
}

.gallery-card video,
.gallery-card iframe {
    width: 100%;
    border: 0;
    min-height: 240px;
}

.info-panel p,
.feature-block p,
.content-card p,
.news-card p,
.sponsor-card p,
.staff-card p,
.player-card p {
    color: var(--ink-500);
    line-height: 1.75;
}

.list-check {
    display: grid;
    gap: 0.8rem;
    padding-left: 0;
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 1.8rem;
}

.list-check li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--peach-500);
    position: absolute;
    left: 0;
    top: 0.1rem;
}

.player-filters,
.fixture-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.player-filters .form-control,
.player-filters .form-select,
.fixture-filters .form-select,
.fixture-filters .form-control,
.newsletter-form .form-control,
.contact-form .form-control,
.contact-form .form-select,
.contact-form .form-control:focus,
.newsletter-form .form-control:focus {
    border-radius: 16px;
    border: 1px solid rgba(17, 19, 24, 0.1);
    box-shadow: none;
}

.contact-form,
.newsletter-form-inline {
    display: grid;
    gap: 1rem;
}

.contact-form textarea {
    min-height: 180px;
}

.spam-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 2rem;
}

.site-footer {
    padding: 4.5rem 0 1.8rem;
    background: #101319;
    color: rgba(255, 255, 255, 0.76);
    margin-top: 4rem;
}

.brand-inline {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.brand-inline img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.12rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

.social-row {
    display: flex;
    gap: 0.85rem;
    margin-top: 1rem;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
}

.social-row a:hover {
    transform: translateY(-3px);
    background: var(--peach-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 14, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1000;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(92vw, 1100px);
    max-height: 84vh;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close,
.back-to-top {
    position: fixed;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
    color: var(--white);
    box-shadow: 0 18px 36px rgba(242, 133, 87, 0.28);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.back-to-top {
    right: 20px;
    bottom: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.empty-state {
    padding: 2rem;
    text-align: center;
    background: var(--surface-strong);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(17, 19, 24, 0.12);
    color: var(--ink-500);
}

.article-content {
    font-size: 1.06rem;
    line-height: 1.95;
}

.article-content p {
    margin-bottom: 1.3rem;
    color: var(--ink-700);
}

.article-content blockquote {
    border-left: 4px solid var(--peach-500);
    padding-left: 1rem;
    color: var(--ink-500);
    font-style: italic;
}

.map-frame {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.social-preview {
    display: grid;
    gap: 1rem;
}

.social-post {
    padding: 1rem;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid rgba(17, 19, 24, 0.06);
}

.section-tint {
    position: relative;
    background: linear-gradient(180deg, rgba(242, 133, 87, 0.08), rgba(255, 255, 255, 0));
}

.section-tint::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(17, 19, 24, 0.04);
    border-bottom: 1px solid rgba(17, 19, 24, 0.04);
    pointer-events: none;
}

.section-tint > .container {
    position: relative;
    z-index: 1;
}

.standings-spotlight .stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.standings-spotlight .stat-card span {
    color: rgba(255, 255, 255, 0.78);
}

.pill-light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-grid,
    .footer-grid,
    .home-news-grid,
    .standings-layout {
        grid-template-columns: 1fr;
    }

    .home-grid-3,
    .home-pulse-grid,
    .match-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-title,
    .page-hero h1 {
        max-width: none;
    }

    .hero-stat-grid,
    .countdown-grid,
    .player-stats,
    .hero-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .hero-shell,
    .page-hero {
        padding-top: 5.5rem;
    }

    .hero-actions,
    .cta-actions,
    .player-filters,
    .fixture-filters,
    .hero-quickline {
        flex-direction: column;
    }

    .home-grid-3,
    .home-pulse-grid,
    .match-hub-grid,
    .cards-grid,
    .countdown-grid,
    .hero-stat-grid,
    .player-stats,
    .hero-mini-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
