@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS – exakt från React-appen
   ============================================================ */
:root {
  --color-primary:    #FF8C1A;
  --color-secondary:  #1F6AE1;
  --color-dark-blue:  #0F3F6E;
  --color-bg:         #FFFFFF;
  --color-bg-muted:   #F2F4F7;
  --color-text:       #1C1C1C;
  --color-text-muted: #666666;
  --color-border:     #E2E6ED;
  --color-success:    #2ECC71;
  --color-white:      #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;

  --shadow-card:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-elevated: 0 10px 30px rgba(0,0,0,0.12);

  --topbar-height: 44px;
  --header-height: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-secondary);
  color: var(--color-white);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar__trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar__nav a {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  transition: color 0.2s;
}

.topbar__nav a:hover { color: #fff; }

.topbar__locale {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

.topbar__locale:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-white);
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.main-nav__link:hover,
.main-nav__link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-header:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  min-width: 720px;
  padding: 1.5rem;
  display: none;
  z-index: 200;
}

.mega-menu.is-open { display: block; }

.mega-menu__section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.mega-menu__section-label:first-child { margin-top: 0; }

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}

.mega-menu__link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  transition: all 0.15s;
}

.mega-menu__link:hover {
  background: var(--color-bg-muted);
  color: var(--color-primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 3rem 2rem;
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-bar__icon {
  color: var(--color-text-muted);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  font-family: var(--font-body);
}

.search-bar__input::placeholder { color: var(--color-text-muted); }

.btn-search {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-search:hover { background: #e07a10; }

/* Popular searches */
.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.popular-searches__label {
  font-size: 13px;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 0.25rem;
}

.popular-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.popular-pill:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover { background: #e07a10; color: white; }

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 15px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 16px;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 2rem;
  max-width: 680px;
  line-height: 1.7;
}

.section__desc a {
  color: var(--color-primary);
  font-weight: 500;
}

.section__desc a:hover { text-decoration: underline; }

/* ============================================================
   LEAGUE CARDS (stadion cards)
   ============================================================ */
.league-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.league-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.league-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.league-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.league-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.league-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
}

.league-card__btn:hover { background: #e07a10; color: white; }

/* ============================================================
   TEAM PAGE HERO
   ============================================================ */
.team-hero {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.team-hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.team-hero__content { display: flex; flex-direction: column; gap: 0.75rem; }

.team-hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.team-hero__desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}

.team-hero__desc p { margin-bottom: 0.5rem; }

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.trust-badge svg {
  color: var(--color-success);
  width: 18px;
  height: 18px;
}

/* ============================================================
   EVENTS LIST (matches)
   ============================================================ */
.events-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.events-count {
  font-size: 15px;
  color: var(--color-text-muted);
}

.events-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* Filter sidebar */
.filter-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--topbar-height) + var(--header-height) + 1rem);
}

.filter-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.filter-group {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.filter-group__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.filter-group__content {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.filter-input {
  width: 100%;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-muted);
}

.filter-input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

/* Match card */
.match-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}

.match-card:hover {
  box-shadow: var(--shadow-elevated);
}

.match-card__jerseys {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.jersey-icon {
  width: 36px;
  height: 36px;
}

.match-card__info { display: flex; flex-direction: column; gap: 0.2rem; }

.match-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.match-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.match-card__meta a {
  color: var(--color-primary);
  font-weight: 500;
}

.match-card__meta a:hover { text-decoration: underline; }

.match-card__meta .separator {
  color: var(--color-border);
}

.match-card__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.1rem;
}

.match-card__venue {
  font-size: 13px;
  color: var(--color-text-muted);
}

.match-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 160px;
}

.match-card__price-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.match-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.btn-tickets {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-tickets:hover { background: #e07a10; color: white; }

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-card);
}

.seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

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

.seo-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.seo-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.seo-content a {
  color: var(--color-primary);
  font-weight: 500;
}

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

/* FAQ */
.faq-list { margin-top: 1.5rem; }

.faq-item {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--color-border); }

.faq-question {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-answer {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  display: none;
}

.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark-blue);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer__brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: white;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

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

/* Newsletter */
.footer__newsletter-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer__newsletter-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 13px;
  font-family: var(--font-body);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { outline: none; border-color: var(--color-primary); }

.newsletter-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-btn:hover { background: #e07a10; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .league-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .topbar__trust { display: none; }
  .events-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .team-hero { grid-template-columns: 1fr; }
  .team-hero__img { max-height: 250px; width: 100%; }
  .league-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .match-card { grid-template-columns: 60px 1fr; }
  .match-card__action { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}

@media (max-width: 600px) {
  .main-nav { display: none; }
  .hero__title { font-size: 2rem; }
  .league-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .match-card { grid-template-columns: 1fr; }
  .topbar__nav { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-text-muted); }
.font-display { font-family: var(--font-display); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
