:root {
  color-scheme: dark;
  --bg: #090807;
  --surface: #151312;
  --surface-soft: #1d1a18;
  --surface-elevated: rgba(255,255,255,0.03);
  --text: #ffffff;
  --text-muted: #bbbbbb;
  --accent: #AF1319;
  --accent-soft: rgba(175,19,25,0.14);
  --gold: #AE9252;
  --gold-soft: rgba(174,146,82,0.16);
  --border: rgba(255,255,255,0.08);
  --shadow: 0 28px 80px rgba(0,0,0,0.24);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(175,19,25,0.05), transparent 28%),
    radial-gradient(circle at bottom left, rgba(174,146,82,0.08), transparent 22%),
    var(--bg);
}

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

button,
input,
textarea,
a {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
  overflow: visible;
  min-height: 140px;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease, padding 0.35s ease;
}

.home-page .site-header {
  position: fixed;
}

header[data-scrolled] {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: 0.8rem 0;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  overflow: visible;
  position: relative;
  width: 100%;
  background: transparent;
}

.brand {
  display: flex;
  align-items: flex-start;
  margin: 0;
  position: absolute;
  left: clamp(3rem, 5vw, 5rem);
  top: 0;
  z-index: 10;
}

.brand img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-toggle span + span {
  margin-top: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: clamp(2rem, 4vw, 4rem);
  background: transparent;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a.active::after {
  width: 100%;
}

.section {
  padding: clamp(6rem, 7vw, 10rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.section-heading h2,
.hero-copy h1 {
  margin: 0;
  line-height: 1.05;
  font-family: 'Bebas Neue', sans-serif;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.section-heading p,
.hero-copy p,
.about-grid p,
.news-card p,
.contact-copy p,
.footer-brand p {
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 44rem;
  margin-bottom: 1.4rem;
}

.p-large {
  font-size: 1.08rem;
  max-width: 54rem;
  margin-top: 0.8rem;
}

.section-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(175,19,25,0.18), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(174,146,82,0.12), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 40%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: inherit;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 6vw, 6rem);
  margin: 0 0 1.6rem;
  letter-spacing: -0.04em;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(175,19,25,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(100%, 420px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(175,19,25,0.08), transparent 35%, rgba(174,146,82,0.08));
  pointer-events: none;
}

.hero-card-top span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card-top strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-card-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-card-details div span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card-details div strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.05rem;
}

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

.status-pill {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.05);
}

.status-live {
  color: #fff;
  background: rgba(175,19,25,0.16);
}

.match-score {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-about .about-grid,
.stats-grid,
.news-grid,
.fixtures-grid,
.gallery-grid,
.contact-grid,
.footer-top {
  display: grid;
  gap: 1.5rem;
}

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

.about-grid article {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.about-grid h3,
.news-card h3,
.fixture-card strong,
.footer-links h4,
.footer-sponsors h4,
.contact-panel strong {
  font-family: 'Bebas Neue', sans-serif;
}

.about-grid h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  min-height: 180px;
}

.stat-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

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

.news-card,
.fixture-card,
.gallery-card,
.contact-panel,
.cta-panel,
.footer-links > div,
.footer-sponsors {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.news-card {
  padding: 2.4rem;
}

.news-tag {
  display: inline-flex;
  padding: 0.65rem 1rem;
  background: rgba(175,19,25,0.16);
  border-radius: 999px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

.news-card h3 {
  margin: 1.3rem 0 1rem;
  font-size: 1.6rem;
}

.news-link {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fixture-card {
  padding: 2.2rem;
  display: grid;
  gap: 1.4rem;
}

.fixtures-list {
  margin-top: 3rem;
}

.fixtures-subheading {
  margin-bottom: 2rem;
}

.fixture-meta span {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.fixture-meta strong {
  margin-top: 0.6rem;
  display: block;
  font-size: 1.4rem;
}

.fixture-details {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-weight: 600;
}

.fixture-status {
  align-self: flex-start;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.status-won {
  background: rgba(174,146,82,0.16);
  color: var(--gold);
}

.status-loss {
  background: rgba(175,19,25,0.12);
  color: var(--accent);
}

.status-draw {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}

.status-pending {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}

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

.gallery-card {
  min-height: 340px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-size: cover;
  background-position: center;
  color: var(--text);
}

.gallery-card span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  font-size: 1.35rem;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,8,7,0.84));
  transition: transform 0.45s ease;
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  transform: translateY(-8px);
}

.gallery-card:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1505842465776-3d0707fed95b?auto=format&fit=crop&w=900&q=80');
}

.gallery-card:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=900&q=80');
}

.gallery-card:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1521412644187-c49fa049e84d?auto=format&fit=crop&w=900&q=80');
}

.gallery-card:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1512938409898-9804d2b1b2f3?auto=format&fit=crop&w=900&q=80');
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  padding: 3rem 2.5rem;
  align-items: center;
}

.cta-panel h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin: 0.8rem 0 1rem;
}

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

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
}

.contact-panel {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.contact-panel strong {
  display: block;
  font-size: 1rem;
}

.contact-panel p {
  margin: 0;
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-group {
  display: grid;
  gap: 0.65rem;
}

.form-group label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.05);
}

.form-feedback {
  min-height: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  background: #060504;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand img {
  width: 56px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0;
}

.social-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--text);
}

.copyright {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

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

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(1120px, 100%);
  max-height: 90vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}

.lightbox-close::before {
  content: '✕';
}

.reveal-up,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

.delay-xs {
  transition-delay: 0.1s;
}

.delay-sm {
  transition-delay: 0.2s;
}

.delay-md {
  transition-delay: 0.3s;
}

.delay-lg {
  transition-delay: 0.4s;
}

.delay-xl {
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .stats-grid,
  .news-grid,
  .fixtures-grid,
  .gallery-grid,
  .cta-panel,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 260px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 0 0 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    left: 1.5rem;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 1rem auto auto;
    width: calc(100% - 2rem);
    margin-right: 0;
    background: transparent;
    border-radius: 24px;
    border: none;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: transparent;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 8vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-card {
    padding: 1.75rem;
  }

  .contact-form {
    gap: 1rem;
  }
}

.league-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.league-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--text-muted);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
}

.league-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.league-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.fixtures-content {
  margin-top: 2rem;
}

.league-content {
  display: none;
}

.league-content.active {
  display: block;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.league-table thead {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.league-table th {
  padding: 1.25rem;
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.league-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.league-table tbody tr {
  transition: background 0.2s ease;
}

.league-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.league-table tbody tr.highlight-deanos {
  background: rgba(175,19,25,0.15);
}

.league-table tbody tr.highlight-deanos:hover {
  background: rgba(175,19,25,0.25);
}

.league-table tbody tr.highlight-deanos td:first-child {
  color: var(--accent);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }
}

.section-sponsors {
  padding: 6rem 0;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-decoration: none;

  padding: 1.5rem;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: #AF1319;
}

.sponsor-card img {
  display: block;
  max-width: 180px;
  width: 100%;
  height: 90px;
  object-fit: contain;

  margin: 0 auto 1rem;
}

.sponsor-card span {
  display: block;
  text-align: center;

  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #AE9252;
}

@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 520px) {
  .sponsors-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE OPTIMISATION ===== */

@media (max-width: 768px) {

  body {
    padding: 0 0.5rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .header-inner {
    padding: 1rem;
  }

  .brand img {
    width: 88px;
    height: 88px;
  }

  .site-header {
    min-height: 90px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-grid {
    gap: 3rem;
    padding-top: 6rem;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 11vw, 4.5rem);
    line-height: 0.95;
  }

  .hero-copy p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    justify-content: center;
  }

  .hero-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-card-top strong {
    font-size: 1.5rem;
  }

  .about-grid,
  .fixtures-grid,
  .news-grid,
  .contact-grid {
    gap: 1rem;
  }

  .stat-card {
    min-height: 140px;
    padding: 1.5rem 1rem;
  }

  .fixture-card,
  .news-card {
    padding: 1.5rem;
  }

  .cta-panel {
    padding: 2rem;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-form .btn {
    width: 100%;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 520px) {

  .brand {
    left: 1rem;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .site-header {
    min-height: 80px;
  }

  .hero-grid {
    padding-top: 5rem;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .hero-card-top strong {
    font-size: 1.3rem;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .fixture-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .league-selector {
    flex-direction: column;
  }

  .league-btn {
    width: 100%;
  }

  .table-wrapper {
    font-size: 0.9rem;
  }
}
@media (max-width: 780px) {

  body {
    padding: 0 0.5rem;
  }

  .header-inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 48px;
    height: 48px;

    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 100;

    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav {
    position: fixed;

    top: 90px;
    left: 1rem;
    right: 1rem;

    background: rgba(9,8,7,0.98);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: all .3s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}