/* ============================================
   MANCHESTER UNITED FC — Main Stylesheet
   Comprehensive stylesheet covering all 5 pages
   ============================================ */

/* ============================================
   0. CSS VARIABLES
   ============================================ */
:root {
  /* Original variables */
  --mu-red: #DA291C;
  --mu-red-dark: #B71C1C;
  --mu-red-light: #EF5350;
  --mu-gold: #FFD700;
  --mu-black: #1A1A1A;
  --mu-dark: #0D0D0D;
  --mu-white: #FFFFFF;
  --mu-gray-100: #F5F5F5;
  --mu-gray-200: #E0E0E0;
  --mu-gray-300: #BDBDBD;
  --mu-gray-600: #757575;
  --mu-gray-800: #424242;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s ease;

  /* Aliases used in history.html inline styles */
  --color-primary: var(--mu-red);
  --color-primary-dark: var(--mu-red-dark);
  --color-gold: var(--mu-gold);
  --color-white: var(--mu-white);
  --color-black: var(--mu-black);
  --color-dark: var(--mu-dark);
  --color-gray: var(--mu-gray-600);
  --color-gray-light: var(--mu-gray-200);

  /* Font sizes */
  --fs-xs: 0.7rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: 1.05rem;
  --fs-lg: 1.15rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;

  /* Font weights */
  --fw-normal: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 5rem;

  /* Border radius */
  --border-radius: 4px;
  --border-radius-lg: 12px;

  /* Transition */
  --transition-base: 0.3s ease;

  /* Shadows */
  --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 30px rgba(0, 0, 0, 0.15);

  /* Container */
  --container: 1280px;
  --container-narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

p {
  margin-bottom: 1rem;
}

table {
  border-collapse: collapse;
}

/* Accessible hiding */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   2. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar--scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.navbar__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-icon {
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mu-white);
  letter-spacing: 2px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--mu-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle--active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--mu-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mu-red);
  transition: width var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--mu-gold);
}

.navbar__link.active {
  color: var(--mu-gold);
}

/* ============================================
   3. HERO (Full + --small + --history variants)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(13, 13, 13, 0.7) 0%,
      rgba(13, 13, 13, 0.4) 40%,
      rgba(13, 13, 13, 0.6) 70%,
      rgba(13, 13, 13, 0.9) 100%),
    linear-gradient(90deg,
      rgba(218, 41, 28, 0.2) 0%,
      transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--mu-white);
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--mu-gold);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: var(--mu-gray-300);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mu-white);
  background: var(--mu-red);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero__cta:hover {
  background: var(--mu-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 41, 28, 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--mu-gray-300);
  animation: heroScroll 2s infinite;
}

.hero__scroll-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mu-gold);
  background: rgba(218, 41, 28, 0.2);
  border: 1px solid var(--mu-red);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mu-gray-300);
  animation: heroScroll 2s infinite;
}

@keyframes heroScroll {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Hero Small Variant */
.hero--small {
  height: 60vh;
  min-height: 400px;
  background: var(--mu-dark);
}

.hero--small .hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
}

/* Hero History Variant */
.hero--history {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-black) 60%, var(--color-dark) 100%);
}

/* ============================================
   4. PAGE-HERO (team.html alternative to hero--small)
   ============================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--mu-dark);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(13, 13, 13, 0.7) 0%,
      rgba(13, 13, 13, 0.4) 40%,
      rgba(13, 13, 13, 0.6) 70%,
      rgba(13, 13, 13, 0.9) 100%),
    linear-gradient(90deg,
      rgba(218, 41, 28, 0.2) 0%,
      transparent 50%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--mu-white);
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.page-hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--mu-gold);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

/* ============================================
   5. STATS
   ============================================ */
.stats {
  background: var(--mu-dark);
  border-top: 3px solid var(--mu-red);
  border-bottom: 3px solid var(--mu-red);
}

.stats__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats__item {
  text-align: center;
  padding: 1rem;
}

.stats__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--mu-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__unit {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mu-gold);
  opacity: 0.7;
  margin-left: 0.25rem;
}

.stats__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--mu-gray-300);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   6. NEWS
   ============================================ */
.news {
  padding: 5rem 0;
  background: var(--mu-gray-100);
}

.news__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.news__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--mu-black);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.news__underline {
  width: 80px;
  height: 4px;
  background: var(--mu-red);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news__card {
  background: var(--mu-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news__card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--mu-red-dark) 0%, var(--mu-black) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news__card-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.news__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
}

.news__card-img--ucl {
  background: linear-gradient(135deg, #0D1B3E 0%, #1A237E 100%);
}

.news__card-img--transfer {
  background: linear-gradient(135deg, var(--mu-black) 0%, var(--mu-gray-800) 100%);
}

.news__card-img--academy {
  background: linear-gradient(135deg, #1B5E20 0%, var(--mu-black) 100%);
}

.news__card-img--club {
  background: linear-gradient(135deg, var(--mu-red) 0%, var(--mu-red-dark) 100%);
}

.news__card-img--fan {
  background: linear-gradient(135deg, #E65100 0%, var(--mu-black) 100%);
}

.news__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mu-white);
  background: var(--mu-red);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  z-index: 1;
}

.news__card-body {
  padding: 1.5rem;
}

.news__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mu-black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news__card-excerpt {
  font-size: 0.9rem;
  color: var(--mu-gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.news__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__card-date {
  font-size: 0.8rem;
  color: var(--mu-gray-300);
}

.news__card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--mu-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.news__card-link:hover {
  color: var(--mu-red-dark);
}

/* ============================================
   7. UPCOMING MATCH
   ============================================ */
.match {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, var(--mu-dark) 0%, var(--mu-black) 100%);
  position: relative;
  overflow: hidden;
}

.match::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px
    );
}

.match__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.match__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mu-gold);
  background: rgba(218, 41, 28, 0.2);
  border: 1px solid var(--mu-red);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.match__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
}

.match__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.match__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.match__team-crest {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.match__team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition);
}

.match__team-crest:hover .match__team-logo {
  transform: scale(1.1);
}

.match__team-crest--home {
  background: linear-gradient(135deg, var(--mu-red) 0%, var(--mu-red-dark) 100%);
  color: var(--mu-gold);
  border: 3px solid var(--mu-gold);
}

.match__team-crest--away {
  background: linear-gradient(135deg, #C62828 0%, #4A148C 100%);
  color: var(--mu-white);
  border: 3px solid var(--mu-gray-300);
}

.match__team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--mu-white);
  letter-spacing: 1px;
}

.match__vs {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--mu-gray-600);
}

.match__info {
  margin-bottom: 2rem;
}

.match__competition {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mu-gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.match__date {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--mu-white);
  font-weight: 500;
}

.match__tickets {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mu-dark);
  background: var(--mu-gold);
  padding: 1rem 3rem;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.match__tickets:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* ============================================
   8. PLAYERS (home page featured)
   ============================================ */
.players {
  padding: 5rem 0;
  background: var(--mu-white);
}

.players__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.players__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--mu-black);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.players__underline {
  width: 80px;
  height: 4px;
  background: var(--mu-red);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.players__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.players__card {
  background: var(--mu-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.players__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.players__card-img {
  height: 260px;
  background: linear-gradient(135deg, var(--mu-red-dark) 0%, var(--mu-black) 60%, var(--mu-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.players__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(218, 41, 28, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.players__card-img--10 {
  background: linear-gradient(135deg, #B71C1C 0%, var(--mu-black) 60%, #D32F2F 100%);
}

.players__card-img--37 {
  background: linear-gradient(135deg, #1A1A1A 0%, var(--mu-red-dark) 60%, var(--mu-black) 100%);
}

.players__card-img--6 {
  background: linear-gradient(135deg, var(--mu-black) 0%, var(--mu-red) 50%, var(--mu-black) 100%);
}

.players__card-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

.players__card-captain {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--mu-gold);
  color: var(--mu-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.players__card-body {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.players__card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mu-black);
  margin-bottom: 0.25rem;
}

.players__card-position {
  font-size: 0.85rem;
  color: var(--mu-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.players__card-stat {
  font-size: 0.8rem;
  color: var(--mu-gray-600);
}

/* ============================================
   9. QUOTE (home page)
   ============================================ */
.quote {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, var(--mu-dark) 0%, var(--mu-black) 100%);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, rgba(218, 41, 28, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.quote__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote__text p {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--mu-white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote__cite {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--mu-gold);
  letter-spacing: 2px;
  font-style: normal;
}

/* ============================================
   10. FOOTER
   ============================================ */
.footer {
  background: var(--mu-black);
  color: var(--mu-gray-300);
  padding-top: 4rem;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 350px;
}

.footer__brand-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--mu-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer__brand-logo span {
  color: var(--mu-red);
}

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer__column h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--mu-white);
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--mu-red);
}

.footer__column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mu-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__column p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__column a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__column a:hover {
  color: var(--mu-gold);
  padding-left: 0.5rem;
}

.footer__column-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--mu-white);
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--mu-red);
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--mu-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

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

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__link:hover {
  color: var(--mu-gold);
  padding-left: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.footer__contact-icon {
  color: var(--mu-red);
  flex-shrink: 0;
  font-size: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--mu-white);
  letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer__social-link:hover {
  background: var(--mu-red);
  color: var(--mu-white);
  transform: translateY(-3px);
}

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

.footer__newsletter input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--mu-white);
  outline: none;
  transition: border-color var(--transition);
}

.footer__newsletter input::placeholder {
  color: var(--mu-gray-600);
}

.footer__newsletter input:focus {
  border-color: var(--mu-red);
}

.footer__newsletter button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mu-white);
  background: var(--mu-red);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}

.footer__newsletter button:hover {
  background: var(--mu-red-dark);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer__bottom p,
.footer__bottom span {
  font-size: 0.8rem;
  color: var(--mu-gray-600);
  margin-bottom: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: var(--mu-gray-600);
  transition: color var(--transition);
}

.footer__bottom-link:hover {
  color: var(--mu-red);
}

/* ============================================
   11. FORM & BUTTON UTILITIES
   ============================================ */
.form {
  max-width: 100%;
}

.form__group {
  margin-bottom: 0.75rem;
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mu-black);
  background: var(--mu-white);
  border: 2px solid var(--mu-gray-200);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus {
  border-color: var(--mu-red);
  box-shadow: 0 0 0 3px rgba(218, 41, 28, 0.1);
}

.form__input::placeholder {
  color: var(--mu-gray-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  padding: 0.75rem 1.5rem;
}

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

.btn--primary:hover {
  background: var(--mu-red-dark);
  box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
  transform: translateY(-2px);
}

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

.btn--secondary:hover {
  background: var(--mu-gray-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--mu-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--mu-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

.btn--gold {
  background: var(--mu-gold);
  color: var(--mu-dark);
}

.btn--gold:hover {
  background: #FFC107;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   12. SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger {
  display: contents;
}

.reveal-stagger > .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

.reveal-stagger > .reveal:nth-child(1) { --stagger-index: 0; }
.reveal-stagger > .reveal:nth-child(2) { --stagger-index: 1; }
.reveal-stagger > .reveal:nth-child(3) { --stagger-index: 2; }
.reveal-stagger > .reveal:nth-child(4) { --stagger-index: 3; }
.reveal-stagger > .reveal:nth-child(5) { --stagger-index: 4; }
.reveal-stagger > .reveal:nth-child(6) { --stagger-index: 5; }
.reveal-stagger > .reveal:nth-child(7) { --stagger-index: 6; }
.reveal-stagger > .reveal:nth-child(8) { --stagger-index: 7; }
.reveal-stagger > .reveal:nth-child(9) { --stagger-index: 8; }
.reveal-stagger > .reveal:nth-child(10) { --stagger-index: 9; }

/* ============================================
   13. CONTAINER UTILITY
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   14. SECTION UTILITIES
   ============================================ */
.section {
  padding: 5rem 0;
}

.section--light {
  background: var(--mu-gray-100);
}

.section--dark {
  background: var(--mu-dark);
  color: var(--mu-white);
}

.section--darker {
  background: linear-gradient(135deg, var(--mu-dark) 0%, var(--mu-black) 100%);
  color: var(--mu-white);
}

.section--pattern {
  position: relative;
}

.section--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, 0.015) 20px,
      rgba(0, 0, 0, 0.015) 40px
    );
  pointer-events: none;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--mu-black);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section__header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--mu-red);
  border-radius: 2px;
}

.section__header p {
  font-size: 1rem;
  color: var(--mu-gray-600);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.section--dark .section__header h2,
.section--darker .section__header h2 {
  color: var(--mu-white);
}

.section--dark .section__header p,
.section--darker .section__header p {
  color: var(--mu-gray-300);
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--mu-black);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--mu-red);
  border-radius: 2px;
}

.section--dark .section__title {
  color: var(--mu-white);
}

/* ============================================
   15. SEASON OVERVIEW BAR
   ============================================ */
.season-overview {
  background: var(--mu-dark);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--mu-red);
}

.season-overview__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.season-overview__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.season-overview__stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.season-overview__stat-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mu-white);
}

.season-overview__position {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--mu-red);
  border-radius: 50px;
  margin-left: 0.5rem;
}

.season-overview__position-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.season-overview__position-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mu-white);
}

/* ============================================
   16. FIXTURE FILTER BUTTONS
   ============================================ */
.fixture-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.fixture-filter__btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mu-gray-800);
  background: var(--mu-white);
  border: 2px solid var(--mu-gray-200);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.fixture-filter__btn:hover {
  border-color: var(--mu-red);
  color: var(--mu-red);
}

.fixture-filter__btn.active {
  background: var(--mu-red);
  border-color: var(--mu-red);
  color: var(--mu-white);
  box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
}

/* ============================================
   17. MATCH CARDS (FIXTURES PAGE)
   ============================================ */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.match-card {
  background: var(--mu-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid transparent;
}

.match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.match-card[data-status="finished"] {
  border-left-color: var(--mu-gray-300);
}

.match-card[data-status="upcoming"] {
  border-left-color: var(--mu-red);
}

.match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--mu-gray-100);
  border-bottom: 1px solid var(--mu-gray-200);
}

.match-card__competition {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mu-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-card__date {
  font-size: 0.75rem;
  color: var(--mu-gray-600);
}

.match-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.75rem 1.25rem;
}

.match-card__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.match-card__team--home {
  justify-content: flex-end;
  text-align: right;
}

.match-card__team--away {
  justify-content: flex-start;
  text-align: left;
}

.match-card__team-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mu-black);
  text-transform: uppercase;
}

.match-card__score {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mu-black);
  min-width: 80px;
  justify-content: center;
}

.match-card__score-home,
.match-card__score-away {
  display: inline;
}

.match-card__score-divider {
  color: var(--mu-gray-300);
  margin: 0 2px;
}

.match-card__kickoff {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mu-red);
}

.match-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--mu-gray-200);
  background: var(--mu-gray-100);
}

.match-card__venue {
  font-size: 0.75rem;
  color: var(--mu-gray-600);
}

.match-card__status {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.match-card__status--win {
  background: rgba(34, 139, 34, 0.1);
  color: #228b22;
}

.match-card__status--loss {
  background: rgba(218, 41, 28, 0.1);
  color: var(--mu-red);
}

.match-card__status--draw {
  background: rgba(255, 215, 0, 0.15);
  color: #b8960f;
}

.match-card__status--upcoming {
  background: rgba(218, 41, 28, 0.1);
  color: var(--mu-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============================================
   18. LEAGUE TABLE
   ============================================ */
.league-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  background: var(--mu-white);
}

.league-table thead {
  background: var(--mu-dark);
  color: var(--mu-white);
}

.league-table th {
  padding: 1rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.league-table th:first-child {
  text-align: left;
}

.league-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--mu-gray-200);
}

.league-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.league-table tbody tr {
  transition: background var(--transition);
}

.league-table tbody tr:hover {
  background: rgba(218, 41, 28, 0.03);
}

.league-table__row--highlight {
  background: rgba(218, 41, 28, 0.08) !important;
  border-left: 4px solid var(--mu-red);
}

.league-table__row--highlight td {
  font-weight: 700;
  color: var(--mu-red);
}

.league-table__pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.league-table__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* ============================================
   19. PLAYER CARD (team.html)
   ============================================ */
.player-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.player-card {
  background: var(--mu-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.player-card__image {
  position: relative;
  overflow: hidden;
}

.player-card__placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.player-card__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  user-select: none;
}

.player-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mu-white);
  background: rgba(218, 41, 28, 0.85);
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  z-index: 2;
}

.player-card__captain {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--mu-gold);
  color: var(--mu-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.player-card__info {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.player-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mu-black);
  margin-bottom: 0.25rem;
}

.player-card__position {
  font-size: 0.85rem;
  color: var(--mu-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.player-card__captain-label {
  color: var(--mu-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.player-card__stats {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.player-card__stats span {
  font-size: 0.75rem;
  color: var(--mu-gray-600);
  background: var(--mu-gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Position-specific gradient variants */
.player-card__placeholder--gk {
  background: linear-gradient(135deg, #555, #000);
}

.player-card__placeholder--def {
  background: linear-gradient(135deg, #1a237e, #000);
}

.player-card__placeholder--mid {
  background: linear-gradient(135deg, #b71c1c, #000);
}

.player-card__placeholder--fwd {
  background: linear-gradient(135deg, #DA291C, #7f0000);
}

/* ============================================
   20. INFO CARD (Stadium facts)
   ============================================ */
.stadium-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-card {
  background: var(--mu-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.info-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mu-red);
  margin-bottom: 0.25rem;
}

.info-card p {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   21. STADIUM GALLERY
   ============================================ */
.stadium-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stadium-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.stadium-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.stadium-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.stadium-gallery__item:hover .stadium-gallery__placeholder {
  transform: scale(1.05);
}

.stadium-gallery__placeholder span {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================
   22. TRANSPORT CARD
   ============================================ */
.transport-card {
  background: var(--mu-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.transport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mu-red), #8B0000);
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.transport-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.transport-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mu-black);
  margin-bottom: 0.75rem;
}

.transport-card p {
  font-size: 0.875rem;
  color: var(--mu-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   23. TOUR CARD
   ============================================ */
.tour-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.tour-card--featured {
  border-color: var(--mu-red);
  background: rgba(218, 41, 28, 0.08);
  transform: scale(1.05);
}

.tour-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.tour-card__badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--mu-red);
  color: var(--mu-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mu-white);
  margin-bottom: 0.75rem;
}

.tour-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--mu-gold);
  margin-bottom: 0.25rem;
}

.tour-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.tour-card__duration {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.tour-card__features li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tour-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--mu-red);
  font-weight: 700;
}

/* ============================================
   24. CONTACT INFO
   ============================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--mu-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-info__item:hover {
  transform: translateX(4px);
}

.contact-info__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 41, 28, 0.08);
  border-radius: 12px;
}

.contact-info__item h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mu-red);
  margin-bottom: 0.25rem;
}

.contact-info__item p {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   25. CONTACT FORM
   ============================================ */
.contact-form {
  background: var(--mu-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mu-black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #333;
  background: var(--mu-gray-100);
  border: 2px solid var(--mu-gray-200);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mu-red);
  box-shadow: 0 0 0 3px rgba(218, 41, 28, 0.1);
  background: var(--mu-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--mu-red);
  margin-top: 4px;
  min-height: 1.2em;
}

.form-success {
  background: #28a745;
  color: var(--mu-white);
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.contact-form .btn--primary {
  width: 100%;
  margin-top: 0.5rem;
}

/* ============================================
   26. MANAGER CARD — Team page (horizontal)
   ============================================ */
.manager-card {
  display: flex;
  align-items: stretch;
  background: var(--mu-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.manager-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.manager-card__image {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  overflow: hidden;
}

.manager-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manager-card__initial {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 4px;
}

.manager-card__info {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manager-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--mu-black);
  margin-bottom: 0.25rem;
}

.manager-card__role {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mu-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.manager-card__details {
  list-style: none;
  margin-bottom: 1.25rem;
}

.manager-card__details li {
  font-size: 0.9rem;
  color: var(--mu-gray-600);
  padding: 0.3rem 0;
}

.manager-card__details li strong {
  color: var(--mu-black);
  font-weight: 600;
}

.manager-card__bio {
  font-size: 0.9rem;
  color: var(--mu-gray-600);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   27. MANAGER CARDS — History page (vertical grid)
   ============================================ */
.manager-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* History-page vertical manager card variant uses same class name.
   The horizontal layout above is overridden inside .manager-cards grid context.
   We use the header-based variant from history.html. */
.manager-cards .manager-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.manager-card__header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: var(--space-2xl) var(--space-xl);
  color: var(--mu-white);
  text-align: center;
}

.manager-card__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.manager-cards .manager-card .manager-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--mu-white);
  margin-bottom: var(--space-xs);
}

.manager-card__years {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
}

.manager-card__body {
  padding: var(--space-xl);
}

.manager-card__achievements {
  list-style: none;
  text-align: left;
}

.manager-card__achievements li {
  font-size: var(--fs-sm);
  color: var(--color-gray);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-gray-light);
  position: relative;
  padding-left: var(--space-lg);
}

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

.manager-card__achievements li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ============================================
   28. TIMELINE (History page)
   ============================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--mu-red);
  opacity: 0.3;
}

.timeline__item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.timeline__item--left {
  justify-content: flex-start;
}

.timeline__item--right {
  justify-content: flex-end;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--mu-red);
  border-radius: 50%;
  border: 3px solid var(--mu-white);
  box-shadow: 0 0 0 3px var(--mu-red);
  z-index: 1;
}

.timeline__content {
  background: var(--mu-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  max-width: 45%;
  position: relative;
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--mu-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.timeline__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--mu-black);
  margin-bottom: 0.5rem;
}

.timeline__description {
  font-size: 0.9rem;
  color: var(--mu-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   29. TROPHY CABINET (History page)
   ============================================ */
.trophy-cabinet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-lg);
}

.trophy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all var(--transition-base);
  text-align: center;
}

.trophy__item:hover {
  background-color: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
  transform: translateY(-4px);
}

.trophy__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.trophy__count {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trophy__name {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   30. QUOTE SECTION (History page)
   ============================================ */
.quote-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.blockquote {
  background: none;
  border: none;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
}

.blockquote::before {
  content: '\201C';
  display: block;
  font-size: 6rem;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1rem;
}

.blockquote__text {
  font-size: var(--fs-2xl);
  color: var(--color-white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.blockquote__author {
  font-size: var(--fs-lg);
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.blockquote__role {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* ============================================
   31. CTA SECTION (History page)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.cta-section h2 {
  font-size: var(--fs-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
}

/* ============================================
   32. GRID UTILITY
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

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

/* ============================================
   33. HISTORY INTRO
   ============================================ */
.history-intro {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.history-intro p {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--color-gray);
}

/* ============================================
   34. KEYFRAMES (additional)
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   35. REAL IMAGE STYLES
   ============================================ */

/* === Navbar Logo Image === */
.navbar__logo-img {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* === Home page player card photo === */
.players__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* === Squad page player card photo === */
.player-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 12px 12px 0 0;
}

/* === Manager card photo (team page - horizontal) === */
.manager-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  left: 0;
}

/* === Manager card photo (history page - in header) === */
.manager-card__header .manager-card__photo,
.manager-card__photo--header {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* === Gallery real images === */
.stadium-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: inherit;
}

.stadium-gallery__item:hover .stadium-gallery__img {
  transform: scale(1.05);
}

/* === Ensure player-card__placeholder has relative positioning === */
.player-card__placeholder {
  position: relative;
  overflow: hidden;
}

.manager-card__image {
  position: relative;
  overflow: hidden;
}

.manager-card__placeholder {
  position: relative;
  overflow: hidden;
}

/* ============================================
   35. RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
  .stadium-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .stadium-gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .stadium-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .manager-card__image {
    width: 240px;
  }
}

/* ============================================
   36. RESPONSIVE — 992px / 1024px
   ============================================ */
@media (max-width: 1024px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .players__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .manager-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .grid--2col {
    grid-template-columns: 1fr;
  }

  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__content {
    max-width: 42%;
  }
}

/* ============================================
   37. RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .navbar__menu--open {
    right: 0;
  }

  .navbar__link {
    font-size: 1rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: 500px;
  }

  .hero--small {
    height: 45vh;
    min-height: 300px;
  }

  .page-hero {
    height: 45vh;
    min-height: 300px;
  }

  .hero__title {
    letter-spacing: 3px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .season-overview__inner {
    gap: 0.5rem;
  }

  .season-overview__stat {
    padding: 0.35rem 1rem;
  }

  .season-overview__stat-value {
    font-size: 0.95rem;
  }

  .season-overview__position {
    margin-left: 0;
  }

  .fixture-filter {
    gap: 0.35rem;
  }

  .fixture-filter__btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .matches-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .match-card__body {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .match-card__team-name {
    font-size: 0.85rem;
  }

  .match-card__score {
    font-size: 1.4rem;
    min-width: 60px;
  }

  .league-table th,
  .league-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .stats__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .match__teams {
    gap: 1.5rem;
  }

  .match__team-crest {
    width: 70px;
    height: 70px;
  }

  .player-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3col {
    grid-template-columns: 1fr;
  }

  .grid--2col {
    grid-template-columns: 1fr;
  }

  .manager-card {
    flex-direction: column;
  }

  .manager-card__image {
    width: 100%;
  }

  .manager-card__placeholder {
    min-height: 240px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    justify-content: flex-start;
    padding-left: 50px;
  }

  .timeline__item--right {
    justify-content: flex-start;
  }

  .timeline__item::before {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline__content {
    max-width: 100%;
  }

  .trophy-cabinet {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .quote-section .blockquote__text {
    font-size: var(--fs-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

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

  .stadium-gallery {
    grid-template-columns: 1fr;
  }

  .stadium-gallery__item--large {
    grid-column: span 1;
  }

  .stadium-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-card--featured {
    transform: none;
  }

  .tour-card--featured:hover {
    transform: translateY(-4px);
  }

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

/* ============================================
   38. RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .news__grid {
    grid-template-columns: 1fr;
  }

  .players__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .match__teams {
    flex-direction: column;
    gap: 1rem;
  }

  .match__vs {
    font-size: 1.2rem;
  }

  .hero--small {
    height: 35vh;
    min-height: 250px;
  }

  .page-hero {
    height: 35vh;
    min-height: 250px;
  }

  .season-overview__inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .season-overview__position {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .fixture-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .fixture-filter__btn {
    text-align: center;
  }

  .match-card__body {
    padding: 1rem 0.75rem;
    gap: 0.75rem;
  }

  .match-card__team-name {
    font-size: 0.8rem;
  }

  .match-card__score {
    font-size: 1.2rem;
    min-width: 50px;
  }

  .league-table th,
  .league-table td {
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
  }

  .player-grid {
    grid-template-columns: 1fr;
  }

  .player-card__placeholder {
    height: 200px;
  }

  .player-card__number {
    font-size: 3.5rem;
  }

  .stadium-facts {
    grid-template-columns: 1fr;
  }

  .tour-card__price {
    font-size: 1.5rem;
  }

  .btn--lg {
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .navbar__container {
    padding: 0.75rem 1rem;
  }
}
