
/* Football Hub Italia — football style, no betting */
:root {
  --white: #ffffff;
  --pitch: #0e6b3a;
  --pitch-dark: #0a4d28;
  --pitch-light: #1a8b4e;
  --ink: #0a0a0a;
  --charcoal: #1a1a1a;
  --gray: #4a4a4a;
  --light-gray: #e0e0e0;
  --off-white: #f7f7f5;
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fhi-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fhi-shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; }
  .fhi-bg::before,
  .fhi-bg-field-lines,
  .fhi-bg-glow { animation: none !important; }
}

/* Mobile optimizations for background */
@media (max-width: 768px) {
  .fhi-bg-orb {
    filter: blur(25px);
  }
  .fhi-bg-orb--1,
  .fhi-bg-orb--2 { width: 240px; height: 240px; }
  .fhi-bg-orb--3,
  .fhi-bg-orb--4 { width: 200px; height: 200px; }
  .fhi-bg-orb--5,
  .fhi-bg-orb--6 { display: none; }
  .fhi-bg-field-lines { animation-duration: 90s; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================================
   FOOTBALL-THEMED ANIMATED BACKGROUND
   ============================================ */
.fhi-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, 
    #0e6b3a 0%, 
    #0a5530 25%, 
    #0e6b3a 50%, 
    #0a5530 75%, 
    #0e6b3a 100%);
}

/* Canvas layer: football particles */
.fhi-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Football field gradient overlay */
@keyframes fhi-field-shift {
  0%, 100% { 
    background-position: 0% 50%;
    opacity: 0.92;
  }
  50% { 
    background-position: 100% 50%;
    opacity: 0.96;
  }
}

.fhi-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg,
      rgba(255,255,255,0.08) 0%,
      transparent 20%,
      rgba(255,255,255,0.04) 50%,
      transparent 80%,
      rgba(255,255,255,0.08) 100%);
  background-size: 300% 300%;
  animation: fhi-field-shift 20s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

/* Football field lines (animated stripes) */
@keyframes fhi-field-lines {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.fhi-bg-field-lines {
  position: absolute;
  inset: -50%;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.03) 80px,
    rgba(255, 255, 255, 0.03) 82px,
    transparent 82px,
    transparent 160px
  );
  animation: fhi-field-lines 60s linear infinite;
}

/* Hexagonal pattern (football texture) */
.fhi-bg-hexagons {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.8) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.8) 2px, transparent 2px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
}

/* Glow effect - stadium lights */
.fhi-bg-glow {
  position: absolute;
  width: 150%;
  height: 100%;
  top: -20%;
  left: -25%;
  background: 
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 35% 25% at 80% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(14, 107, 58, 0.15) 0%, transparent 60%);
  z-index: 3;
  pointer-events: none;
  animation: fhi-glow-pulse 15s ease-in-out infinite;
}

@keyframes fhi-glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Floating tactical elements (orbs as tactical markers) */
.fhi-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 4;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at 35% 35%, 
    rgba(255, 255, 255, 0.12), 
    rgba(14, 107, 58, 0.18) 40%,
    transparent 70%);
  box-shadow: 
    0 0 20px rgba(14, 107, 58, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.fhi-bg-orb--1 { left: 8%; top: 12%; width: 280px; height: 280px; }
.fhi-bg-orb--2 { left: 55%; top: 48%; width: 320px; height: 320px; }
.fhi-bg-orb--3 { left: 78%; top: 18%; width: 220px; height: 220px; }
.fhi-bg-orb--4 { left: 18%; top: 58%; width: 240px; height: 240px; }
.fhi-bg-orb--5 { left: 42%; top: 78%; width: 200px; height: 200px; }
.fhi-bg-orb--6 { left: 85%; top: 68%; width: 180px; height: 180px; }

/* SVG pattern container */
.fhi-bg-svg {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.15;
}

/* Corner marks (like football field corners) */
@keyframes fhi-corner-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.fhi-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 5%, rgba(255,255,255,0.15) 0%, transparent 3%),
    radial-gradient(circle at 95% 5%, rgba(255,255,255,0.15) 0%, transparent 3%),
    radial-gradient(circle at 5% 95%, rgba(255,255,255,0.15) 0%, transparent 3%),
    radial-gradient(circle at 95% 95%, rgba(255,255,255,0.15) 0%, transparent 3%);
  z-index: 6;
  pointer-events: none;
  animation: fhi-corner-pulse 4s ease-in-out infinite;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

/* Subtle content overlay for readability - THIN layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: lighten;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pitch); text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { color: var(--pitch-dark); }
ul { list-style: none; }

.fhi-heading { 
  font-family: var(--font-display); 
  font-weight: 600; 
  letter-spacing: 0.02em; 
  color: var(--ink); 
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.fhi-heading--hero { 
  font-size: clamp(2rem, 6vw, 3.5rem); 
  line-height: 1.1; 
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.fhi-heading--section { 
  font-size: clamp(1.25rem, 3.5vw, 1.75rem); 
  margin-bottom: 0.75em;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}
.fhi-heading--card { 
  font-size: 1.125rem; 
  text-transform: uppercase;
}
.fhi-text { 
  color: var(--charcoal);
}
.fhi-text--lead { 
  font-size: 1.0625rem; 
  color: var(--gray);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.fhi-wrap { 
  max-width: 1140px; 
  margin: 0 auto; 
  padding: 0 1.5rem; 
  position: relative;
  z-index: 2;
}
.fhi-section { 
  padding: 4rem 0; 
  position: relative;
}
.fhi-section--hero { 
  padding: 5rem 0 5rem;
}
.fhi-section--alt { 
  background: rgba(247, 247, 245, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ——— Header: two explicit rows (row1 = logo + toggle, row2 = nav) ——— */
.fhi-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 3px solid var(--pitch);
  box-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(14, 107, 58, 0.12);
}
.fhi-header .fhi-wrap { padding-top: 0; padding-bottom: 0; }
.fhi-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
}
/* Logo на левой стороне */
.fhi-header__inner > .fhi-logo {
  flex-shrink: 0;
}
/* Nav в центре/справа */
.fhi-header__inner > .fhi-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}
/* Бургер-кнопка (скрыта по умолчанию) */
.fhi-header__inner > .fhi-nav-toggle {
  flex-shrink: 0;
}
.fhi-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.fhi-logo:hover { color: var(--ink); opacity: 0.9; }
.fhi-logo__img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.fhi-logo__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.fhi-logo__icon circle,
.fhi-logo__icon path { stroke: var(--pitch); fill: none; }
.fhi-logo:hover .fhi-logo__icon circle,
.fhi-logo:hover .fhi-logo__icon path { stroke: var(--pitch-dark); }

.fhi-nav > a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
}
.fhi-nav > a:hover,
.fhi-nav > a[aria-current="page"] { 
  color: var(--pitch); 
  background: rgba(14, 107, 58, 0.12);
  box-shadow: 0 2px 6px rgba(14, 107, 58, 0.15);
}
.fhi-nav > .fhi-cta {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: var(--pitch);
  color: var(--white);
  border: none;
  box-shadow: 
    0 2px 8px rgba(14, 107, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.fhi-nav > .fhi-cta:hover { 
  background: var(--pitch-dark); 
  color: var(--white);
  box-shadow: 
    0 4px 12px rgba(14, 107, 58, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.fhi-lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border: 1px solid rgba(14, 107, 58, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(14, 107, 58, 0.1);
}
.fhi-lang-switch button {
  padding: 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.fhi-lang-switch button:hover { 
  background: rgba(247, 247, 245, 0.8); 
  color: var(--ink); 
}
.fhi-lang-switch button.is-active { 
  background: var(--pitch); 
  color: var(--white);
  box-shadow: 0 2px 6px rgba(14, 107, 58, 0.3);
}

/* Mobile: hamburger shows, row2 nav becomes dropdown */
.fhi-nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--pitch);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 
    0 2px 8px rgba(14, 107, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}
.fhi-nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 4px 12px rgba(14, 107, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.fhi-nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--pitch);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
/* При открытом меню: скрыть полоски бургера и показать крестик */
.fhi-nav-toggle[aria-expanded="true"] .fhi-nav-toggle__bar {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
.fhi-nav-toggle[aria-expanded="true"]::after {
  content: '×';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--pitch-dark);
  z-index: 2;
}
.fhi-nav-toggle[aria-expanded="true"]:hover::after { color: var(--ink); }

/* Бургер-меню при ширине <= 1050px */
@media (max-width: 1050px) {
  .fhi-nav-toggle { display: flex; }
  
  /* Скрыть nav в обычном состоянии */
  .fhi-header__inner > .fhi-nav {
    display: none;
  }
  
  /* Кнопка бургера и логотип ВСЕГДА поверх открытой панели */
  .fhi-header.is-open .fhi-header__inner > .fhi-logo,
  .fhi-header.is-open .fhi-header__inner > .fhi-nav-toggle {
    position: relative;
    z-index: 110;
    background: var(--white);
  }
  .fhi-header.is-open .fhi-header__inner > .fhi-nav-toggle {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Мобильное меню на весь экран */
  .fhi-header.is-open .fhi-header__inner > .fhi-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    padding: 5rem 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 0 40px rgba(14, 107, 58, 0.2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 99;
    justify-content: flex-start;
  }
  
  .fhi-header.is-open .fhi-nav > a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: left;
  }
  
  .fhi-lang-switch { 
    margin: 1rem 0 0;
    justify-content: center;
  }
}

/* Мобильная: компактные отступы */
@media (max-width: 768px) {
  .fhi-wrap { padding: 0 1rem; }
  .fhi-section { padding: 2.5rem 0; }
  .fhi-section--hero { padding: 3rem 0; }
  .fhi-hero { padding: 3rem 0; }
  .fhi-hero__title { margin-bottom: 0.5rem; }
  .fhi-cta { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
  .fhi-nav-toggle { width: 40px; height: 40px; }
  .fhi-header__inner { padding: 0.5rem 0; }
  .fhi-header.is-open .fhi-header__inner > .fhi-nav { padding: 4rem 1rem 2rem; }
  .fhi-cards { gap: 1.25rem; }
  .fhi-card { padding: 1.25rem; }
  .fhi-footer { padding: 2.5rem 0 0; margin-top: 2.5rem; }
  .fhi-footer-grid { gap: 1.5rem; padding-bottom: 1.5rem; }
  .fhi-footer__bar { padding: 0.85rem 0; }
  .fhi-disclaimer-bar { padding: 0.75rem 1rem; }
}

/* Space under sticky header so content is not overlapped */
main {
  position: relative;
  z-index: 2;
  background: transparent;
}
.fhi-section:first-of-type {
  scroll-margin-top: 120px;
}

/* ——— Hero ——— */
.fhi-hero {
  text-align: center;
  padding: 5rem 0 5rem;
  position: relative;
}

.fhi-hero__title {
  margin-bottom: 0.75rem;
  animation: fhi-fadeInUp 0.6s var(--ease) both;
}
.fhi-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--charcoal);
  max-width: 44ch;
  margin: 0 auto 1.5rem;
  animation: fhi-fadeInUp 0.6s var(--ease) 0.1s both;
}
.fhi-cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--pitch);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 
    0 4px 12px rgba(11, 90, 48, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.fhi-cta:hover { 
  background: var(--pitch-dark); 
  color: var(--white); 
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(14, 107, 58, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ——— Cards: more space, not squished ——— */
.fhi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.fhi-card {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px) saturate(180%);
  border: 2px solid rgba(14, 107, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 
    0 4px 20px rgba(14, 107, 58, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  overflow: hidden;
  position: relative;
}
.fhi-card:hover {
  box-shadow: 
    0 12px 40px rgba(14, 107, 58, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  border-color: var(--pitch-light);
}
.fhi-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-12deg);
  pointer-events: none;
}
.fhi-card:hover::after { animation: fhi-shimmer 0.7s ease-out forwards; }
.fhi-comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.fhi-comp-badge img { 
  width: 20px; 
  height: 20px; 
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.fhi-match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.fhi-match-teams img { width: 40px; height: 40px; object-fit: contain; }
.fhi-match-date { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }
.fhi-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  color: var(--gray);
  margin-top: 0.75rem;
  border: 1px solid rgba(14, 107, 58, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.fhi-team-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(247, 247, 245, 0.95);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(14, 107, 58, 0.2);
  box-shadow: 
    0 2px 8px rgba(14, 107, 58, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.fhi-team-badge img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  padding: 6px; 
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Teams grid — more gap */
.fhi-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.fhi-team-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px) saturate(180%);
  border: 2px solid rgba(14, 107, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 
    0 4px 20px rgba(14, 107, 58, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.fhi-team-card:hover {
  box-shadow: 
    0 12px 40px rgba(14, 107, 58, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  border-color: var(--pitch-light);
}

/* Fixture list */
.fhi-fixture-list { 
  margin-top: 1.25rem; 
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(14, 107, 58, 0.08);
}
.fhi-fixture-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(14, 107, 58, 0.1);
  font-size: 0.95rem;
}
.fhi-fixture-row:last-child { border-bottom: none; }
.fhi-fixture-teams { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  flex-wrap: wrap; 
}
.fhi-fixture-teams img { 
  width: 28px; 
  height: 28px; 
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.fhi-fixture-time { 
  color: var(--gray); 
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.fhi-note-editorial {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(14, 107, 58, 0.15);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.fhi-disclaimer-bar {
  background: rgba(10, 77, 40, 0.90);
  backdrop-filter: blur(12px) saturate(180%);
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 -2px 12px rgba(14, 107, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* ——— Footer (same on all pages) ——— */
.fhi-footer {
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(16px) saturate(180%);
  color: var(--white);
  padding: 4rem 0 0;
  margin-top: 4rem;
  border-top: 3px solid var(--pitch);
  position: relative;
  z-index: 2;
  box-shadow: 
    0 -8px 32px rgba(14, 107, 58, 0.25),
    inset 0 1px 0 rgba(14, 107, 58, 0.5);
}
.fhi-footer .fhi-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fhi-footer a { color: rgba(255,255,255,0.88); }
.fhi-footer a:hover { color: var(--white); }
.fhi-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.fhi-footer-grid > * {
  min-width: 0;
  overflow-wrap: break-word;
}
@media (max-width: 768px) { .fhi-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .fhi-footer-grid { grid-template-columns: 1fr; } }
.fhi-footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--white);
}
.fhi-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.fhi-footer__nav a { font-size: 0.9rem; }
.fhi-footer__bar {
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}
.fhi-footer__bar a { color: rgba(255,255,255,0.95); }

.fhi-breadcrumb { 
  font-size: 0.9rem; 
  color: var(--gray); 
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.fhi-breadcrumb a { 
  color: var(--gray); 
  transition: color var(--transition);
}
.fhi-breadcrumb a:hover { 
  color: var(--pitch);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.fhi-legal-page .fhi-heading--section { 
  margin-bottom: 1rem; 
}
.fhi-legal-page p { 
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}
.fhi-legal-page ul { 
  margin: 0.5rem 0 1rem 1.5rem; 
}
.fhi-legal-page li { 
  margin-bottom: 0.3rem; 
  list-style: disc;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.fhi-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.fhi-carousel-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px) saturate(180%);
  border: 2px solid rgba(14, 107, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 
    0 4px 16px rgba(14, 107, 58, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fhi-animate .fhi-card,
.fhi-animate .fhi-team-card { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.fhi-animate-in .fhi-card,
.fhi-animate-in .fhi-team-card { opacity: 1; transform: translateY(0); }
.fhi-animate-in .fhi-card:nth-child(1), .fhi-animate-in .fhi-team-card:nth-child(1) { transition-delay: 0.05s; }
.fhi-animate-in .fhi-card:nth-child(2), .fhi-animate-in .fhi-team-card:nth-child(2) { transition-delay: 0.1s; }
.fhi-animate-in .fhi-card:nth-child(3), .fhi-animate-in .fhi-team-card:nth-child(3) { transition-delay: 0.15s; }
.fhi-animate-in .fhi-card:nth-child(4), .fhi-animate-in .fhi-team-card:nth-child(4) { transition-delay: 0.2s; }
.fhi-animate-in .fhi-card:nth-child(5), .fhi-animate-in .fhi-team-card:nth-child(5) { transition-delay: 0.25s; }
.fhi-animate-in .fhi-card:nth-child(6), .fhi-animate-in .fhi-team-card:nth-child(6) { transition-delay: 0.3s; }
