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

/* ── TOKENS ── */
:root {
  --black:      #080808;
  --black-mid:  #0d0d0d;
  --black-light:#111111;
  --dark:       #1a1a1a;
  --gold:       #FFD700;
  --gold-dim:   rgba(255,215,0,0.35);
  --gold-glow:  rgba(255,215,0,0.15);
  --white:      #ffffff;
  --gray-1:     #2a2a2a;
  --gray-2:     #444444;
  --gray-3:     #666666;
  --gray-4:     #999999;
  --green:      #22c55e;
  --red:        #ef4444;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition: 0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height:1.5; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }
button { cursor:pointer; border:none; background:none; font:inherit; }
ul { list-style:none; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--gold);
  padding: 0 2rem;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
}
.announce-bar a { color:#000; }
.announce-bar a:hover { text-decoration: underline; }
.announce-socials {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.announce-socials a {
  width: 26px; height: 26px;
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 0.8rem;
  transition: background var(--transition), color var(--transition);
}
.announce-socials a:hover { background: rgba(0,0,0,0.35); }
.announce-lang {
  display: flex;
  align-items: center;
  margin-left: 0.4rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(0,0,0,0.25);
  gap: 0;
}
.announce-lang .lang-switcher {
  border: 1px solid rgba(0,0,0,0.3);
  overflow: hidden;
}
.announce-lang .lang-btn {
  padding: 0.15rem 0.45rem;
  font-size: 0.6rem;
  color: #000;
  background: transparent;
  gap: 0.2rem;
}
.announce-lang .lang-btn .fi {
  width: 13px;
  height: 10px;
}
.announce-lang .lang-btn.active { background: rgba(0,0,0,0.18); color: #000; font-weight: 700; }
.announce-lang .lang-btn:hover  { background: rgba(0,0,0,0.28); color: #000; }
.announce-lang .lang-sep { width: 1px; height: 14px; background: rgba(0,0,0,0.25); }

/* ── NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black-mid);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  border-bottom: 1px solid var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo:hover { opacity: 0.9; }
.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 0 0.85rem;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gray-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a i {
  font-size: 0.95rem;
  color: var(--gray-2);
  transition: color var(--transition), transform var(--transition);
}
.nav-links a:hover i { color: var(--gold); transform: translateY(-1px); }
.nav-links a.active i { color: var(--gold); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--gold); }
.nav-actions { display:flex; gap:0.75rem; align-items:center; flex-shrink:0; }
.btn-nav {
  padding: 0.45rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-nav-primary {
  background: var(--gold);
  color: #000;
}
.btn-nav-primary:hover { background: #fff; }
.btn-nav-ghost {
  border: 1px solid var(--gray-1);
  color: var(--gray-4);
}
.btn-nav-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-1);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  background: none;
  border: none;
  color: var(--gray-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  line-height: 1;
}
.lang-btn .fi {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.lang-btn.active { color: var(--gold); background: rgba(255,215,0,0.08); }
.lang-sep {
  width: 1px;
  height: 20px;
  background: var(--gray-1);
  flex-shrink: 0;
}

/* hamburger — visible on mobile by default, hidden on desktop via min-width breakpoint */
.nav-hamburger { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.nav-hamburger span { width:22px; height:2px; background:var(--white); display:block; transition:all var(--transition); }

/* ── LION WATERMARK ANIMATION ── */
.lion-watermark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.lion-w {
  position: absolute;
  background: url('../img/lion-bg.png') no-repeat center / contain;
  filter: grayscale(1) brightness(0.5);
}
.lion-w1 {
  width: 560px;
  height: 560px;
  right: -60px;
  top: -80px;
  opacity: 0.07;
  animation: lion-float1 10s ease-in-out infinite;
}
.lion-w2 {
  width: 300px;
  height: 300px;
  left: 2%;
  bottom: 20px;
  opacity: 0.035;
  animation: lion-float2 14s ease-in-out infinite;
}
.lion-w3 {
  width: 200px;
  height: 200px;
  left: 40%;
  top: 0;
  opacity: 0.025;
  animation: lion-float1 18s ease-in-out infinite 3s;
}
.lion-w4 {
  width: 380px;
  height: 380px;
  left: 22%;
  bottom: -60px;
  opacity: 0.03;
  animation: lion-float2 12s ease-in-out infinite 5s;
}
.lion-w5 {
  width: 240px;
  height: 240px;
  right: 28%;
  top: 10px;
  opacity: 0.022;
  animation: lion-float1 16s ease-in-out infinite 8s;
}
.lion-w6 {
  width: 160px;
  height: 160px;
  left: 12%;
  top: 30px;
  opacity: 0.018;
  animation: lion-float2 20s ease-in-out infinite 2s;
}
.lion-w7 {
  width: 460px;
  height: 460px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.015;
  animation: lion-float1 22s ease-in-out infinite 6s;
}
.lion-w8 {
  width: 130px;
  height: 130px;
  right: 5%;
  bottom: 10px;
  opacity: 0.028;
  animation: lion-float2 11s ease-in-out infinite 9s;
}
.lion-w9 {
  width: 320px;
  height: 320px;
  right: 38%;
  bottom: -30px;
  opacity: 0.02;
  animation: lion-float1 15s ease-in-out infinite 4s;
}
@keyframes lion-float1 {
  0%, 100% { transform: translateY(0) scale(1);        opacity: 0.07;  }
  50%       { transform: translateY(-20px) scale(1.04); opacity: 0.10;  }
}
@keyframes lion-float2 {
  0%, 100% { transform: translateY(0) scale(1);        opacity: 0.035; }
  50%       { transform: translateY(-14px) scale(1.02); opacity: 0.055; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #111 0, #111 6px, #0d0d0d 6px, #0d0d0d 12px);
  opacity: 0.6;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.92) 40%, rgba(8,8,8,0.3) 70%, rgba(8,8,8,0.5) 100%);
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(0,0,0,0) 50%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  z-index: 2;
}
.hero-main {
  flex: 1;
  max-width: 480px;
  z-index: 2;
  padding-bottom: 60px;
}
.hero-season {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}
.hero-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-ctas { display:flex; gap:0.75rem; flex-wrap:wrap; }
.btn-hero-primary {
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-hero-primary:hover { background: #fff; }
.btn-hero-ghost {
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero title row — transparent on desktop, flex row on mobile */
.hero-title-row { display: block; }

/* Hero logo badge */
.hero-badge-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 24px rgba(255,215,0,0.4));
}
.hero-badge-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-badge-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(255,215,0,0.6);
  box-shadow: 0 0 80px rgba(255,215,0,0.2), inset 0 0 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  position: relative;
}
.hero-badge-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.18);
}
.hero-badge-label {
  margin-top: 1rem;
  font-size: 0.65rem;
  color: rgba(255,215,0,0.5);
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.6;
}

/* Hero score pill */
.hero-score-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(8,8,8,0.95);
  border-top: 1px solid var(--gold-dim);
  display: flex;
  align-items: stretch;
}
.score-item {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border-right: 1px solid var(--dark);
}
.score-label {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.score-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.score-value .highlight { color: var(--gold); }
.score-sub {
  font-size: 0.6rem;
  color: var(--gray-3);
  margin-top: 0.15rem;
}
.score-cta {
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
}
.score-cta a {
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.score-cta a:hover { background: var(--gold); color: #000; }

/* ── GOLD DIVIDER ── */
.gold-line { height: 3px; background: var(--gold); }

/* ── TICKER ── */
.ticker {
  background: var(--black-mid);
  border-bottom: 1px solid var(--dark);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  padding: 0 2.5rem;
  font-size: 0.72rem;
  color: var(--gray-4);
  border-right: 1px solid var(--dark);
}
.ticker-track span strong { color: var(--white); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.section-heading h2 span { color: var(--gold); }
.section-heading a {
  font-size: 0.72rem;
  color: var(--gray-3);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.section-heading a:hover { color: var(--gold); }

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--dark);
}
.cat-tab {
  padding: 0.6rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.cat-tab.active, .cat-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── NEWS SECTION ── */
.news-section {
  background: var(--black);
  padding: 3rem 0 2rem;
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1px;
  background: var(--dark);
}
.news-main { background: var(--black); }
.news-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.news-featured-img {
  height: 340px;
  background: repeating-linear-gradient(45deg,#1a1a1a 0,#1a1a1a 6px,#111 6px,#111 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.news-featured:hover .news-featured-img { transform: scale(1.04); }
.news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(0,0,0,0) 50%);
}
.news-featured-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.news-tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-featured-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.news-small-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark);
  margin-top: 1px;
}
.news-card-sm {
  background: var(--black-mid);
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}
.news-card-sm:hover { background: var(--black-light); }
.news-card-sm-img {
  height: 90px;
  background: repeating-linear-gradient(45deg,#1a1a1a 0,#1a1a1a 6px,#111 6px,#111 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.news-card-sm-body { padding: 0.75rem; }
.news-card-sm-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-top: 0.3rem;
}
.news-meta { font-size: 0.65rem; color: var(--gray-3); margin-top: 0.3rem; }

/* News sidebar */
.news-sidebar {
  background: var(--black-mid);
  display: flex;
  flex-direction: column;
}
.sidebar-block {
  padding: 1.25rem;
  border-bottom: 1px solid var(--black-light);
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
/* Match widget */
.match-widget {
  background: var(--black);
  padding: 1rem;
  text-align: center;
}
.match-date {
  font-size: 0.62rem;
  color: var(--gray-3);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.match-teams-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.match-club {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.match-club-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: #000;
  font-weight: 700;
}
.match-club-badge.opp {
  background: var(--dark);
  border: 1px dashed var(--gray-1);
  font-size: 0.9rem;
}
.match-club-name { font-size: 0.65rem; color: var(--gray-4); }
.match-vs {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-2);
}
.match-score-big {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.match-score-big .g { color: var(--gold); }
.btn-ticket {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  transition: all var(--transition);
}
.btn-ticket:hover { background: var(--white); }

/* Standings */
.standing-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--black-light);
  font-size: 0.75rem;
}
.standing-pos {
  font-family: var(--font-display);
  font-size: 0.85rem;
  min-width: 16px;
  color: var(--gray-2);
}
.standing-row.top .standing-pos { color: var(--gold); }
.standing-club { flex: 1; color: var(--gray-4); }
.standing-row.top .standing-club { color: var(--white); font-weight: 600; }
.standing-pts { color: var(--gray-3); }
.standing-row.top .standing-pts { color: var(--gold); }

/* CTA block */
.sidebar-cta {
  padding: 1.25rem;
  background: var(--gold);
  flex: 1;
}
.sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.sidebar-cta-text { font-size: 0.72rem; color: #333; line-height: 1.5; margin-bottom: 0.75rem; }
.btn-apply {
  display: block;
  padding: 0.6rem;
  background: #000;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-apply:hover { background: #222; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--black-mid);
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 1.5rem 0;
  text-align: center;
  border-right: 1px solid var(--dark);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.62rem;
  color: var(--gray-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── FIXTURES ── */
.fixtures-section {
  background: var(--black);
  padding: 3rem 0;
}
.fixtures-strip {
  display: flex;
  gap: 1px;
  background: var(--dark);
  overflow-x: auto;
  scrollbar-width: none;
}
.fixtures-strip::-webkit-scrollbar { display:none; }
.fixture-card {
  background: var(--black-mid);
  padding: 1rem 1.25rem;
  flex: 0 0 180px;
  border-left: 3px solid var(--dark);
  transition: background var(--transition);
}
.fixture-card:hover { background: var(--black-light); }
.fixture-card.result-win  { border-left-color: var(--green); }
.fixture-card.result-loss { border-left-color: var(--red); }
.fixture-card.result-draw { border-left-color: var(--gold); }
.fixture-competition {
  font-size: 0.6rem;
  color: var(--gray-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.fixture-teams { margin-bottom: 0.4rem; }
.fixture-team { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.fixture-team.home::after { content: ' v '; color: var(--gray-3); font-weight: 400; }
.fixture-score-box {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin: 0.3rem 0;
}
.fixture-date { font-size: 0.62rem; color: var(--gray-3); }

/* ── PLAYER SPOTLIGHT ── */
.spotlight-section {
  position: relative;
  background: var(--black-mid);
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}
.spotlight-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: repeating-linear-gradient(45deg, #111 0, #111 5px, #0d0d0d 5px, #0d0d0d 10px);
}
.spotlight-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black-mid) 50%, transparent 80%);
}
.spotlight-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
}
.spotlight-eye {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.spotlight-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.spotlight-name span { color: var(--gold); }
.spotlight-detail { font-size: 0.72rem; color: var(--gray-3); letter-spacing: 0.05em; }

/* ── PLAYERS SCROLL ── */
.players-section {
  background: var(--black);
  padding: 3rem 0;
}
.players-scroll {
  display: flex;
  gap: 1px;
  background: var(--dark);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
  padding-bottom: 4px;
}
.player-card {
  background: var(--black-mid);
  flex: 0 0 180px;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}
.player-card:hover { background: var(--black-light); }
.player-card-img {
  height: 140px;
  background: repeating-linear-gradient(45deg,#1a1a1a 0,#1a1a1a 6px,#111 6px,#111 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.player-card-num {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.player-card-body { padding: 0.75rem; }
.player-pos-tag {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.pos-FWD { background: rgba(255,215,0,0.15); color: var(--gold); }
.pos-MID { background: rgba(34,197,94,0.15);  color: var(--green); }
.pos-DEF { background: rgba(59,130,246,0.15); color: #60a5fa; }
.pos-GK  { background: rgba(239,68,68,0.15);  color: var(--red); }
.player-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.player-team { font-size: 0.65rem; color: var(--gray-3); margin-bottom: 0.5rem; }
.player-card-stats { display:flex; gap:0.5rem; }
.pcs { text-align:center; flex:1; }
.pcs .v { font-family: var(--font-display); font-size: 1rem; color: var(--gold); }
.pcs .l { font-size: 0.55rem; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── CLUB SECTION ── */
.club-section {
  background: var(--black-mid);
  padding: 4rem 0;
  border-top: 1px solid var(--dark);
}
.club-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.club-eyebrow {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.club-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.club-content h2 em { color: var(--gold); font-style: normal; }
.club-content p {
  font-size: 0.85rem;
  color: var(--gray-4);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.club-stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  background: var(--dark);
}
.club-stat {
  flex: 1;
  padding: 1rem 0;
  text-align: center;
  border-right: 1px solid var(--black-mid);
}
.club-stat:last-child { border-right: none; }
.club-stat .val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.club-stat .lbl {
  font-size: 0.62rem;
  color: var(--gray-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.club-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.club-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--black);
  border-left: 2px solid var(--gold);
  transition: background var(--transition);
}
.club-pillar:hover { background: var(--black-light); }
.club-pillar-icon {
  font-size: 0;           /* suppress any leftover emoji */
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0.15rem;
}
/* Outer diamond — acts as the gold border */
.club-pillar-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,215,0,0.38);
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(255,215,0,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
/* Inner diamond — dark fill */
.club-pillar-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #111;
  transform: rotate(45deg);
  border-radius: 4px;
}
/* Icon itself floats above both pseudo-elements */
.club-pillar-icon i {
  font-size: 1.15rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.65));
  position: relative;
  z-index: 1;
  transition: filter var(--transition);
}
.club-pillar:hover .club-pillar-icon::before {
  background: rgba(255,215,0,0.6);
  box-shadow: 0 0 28px rgba(255,215,0,0.32);
}
.club-pillar:hover .club-pillar-icon i {
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.9));
}
.club-pillar h3 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.club-pillar p { font-size: 0.75rem; color: var(--gray-3); line-height: 1.6; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--gold);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 250px; }
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.newsletter-text p { font-size: 0.78rem; color: #333; }
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 380px;
  max-width: 100%;
}
.newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #000;
  outline: none;
}
.newsletter-input::placeholder { color: #555; }
.newsletter-input:focus { background: rgba(0,0,0,0.15); }
.btn-subscribe {
  padding: 0.7rem 1.25rem;
  background: #000;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-subscribe:hover { background: #222; }

/* ── PARTNERS ── */
.partners-section {
  background: var(--black);
  padding: 3rem 0;
  border-top: 1px solid var(--dark);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--dark);
}
.partner-card {
  background: var(--black-mid);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--gray-2);
  letter-spacing: 0.05em;
  transition: background var(--transition);
  overflow: hidden;
  padding: 0.5rem;
}
.partner-card:hover { background: var(--black-light); color: var(--gray-4); }
.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition);
}
.partner-card:hover .partner-logo { filter: grayscale(0%); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--dark);
}
.footer-brand p {
  font-size: 0.78rem;
  color: var(--gray-3);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.footer-logo-sub {
  font-size: 0.65rem;
  color: var(--gray-3);
  letter-spacing: 0.05em;
}
.footer-socials { display:flex; gap:0.5rem; flex-wrap: wrap; }
.footer-social {
  width: 36px; height: 36px;
  background: var(--dark);
  border: 1px solid var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-4);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
/* Instagram hover — gradient brand color on dark bg */
.footer-social[title="Instagram"]:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.footer-social[title="Facebook"]:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-social[title="Twitter / X"]:hover { background: #000; border-color: #555; color: #fff; }
.footer-social[title="YouTube"]:hover   { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social[title="Flickr"]:hover    { background: #ff0084; border-color: #ff0084; color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:0.5rem; }
.footer-col a { font-size: 0.78rem; color: var(--gray-3); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: var(--gray-2);
}
.footer-bottom a { color: var(--gray-2); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── OTHER PAGES SHARED ── */
.page-header {
  background: var(--black-mid);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--gold);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.page-header h1 span { color: var(--gold); }
.page-header p { font-size: 0.82rem; color: var(--gray-4); margin-top: 0.4rem; }

/* Teams page */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2px;
  background: var(--dark);
  margin-top: 2rem;
}
.team-card {
  background: var(--black-mid);
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}
.team-card:hover { background: var(--black-light); }
.team-card-banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--dark);
  font-size: 4rem;
}
.team-card-body { padding: 1.5rem; }
.team-cat { font-size: 0.68rem; color: var(--gray-3); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; }
.team-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.team-record { display:flex; gap:0.75rem; font-size: 0.8rem; font-weight: 700; }
.rec-w { color: var(--green); }
.rec-d { color: var(--gold); }
.rec-l { color: var(--red); }

/* Players page */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--dark);
  margin-top: 2rem;
}

/* Player detail */
.player-detail-wrap {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}
.player-detail-card {
  background: var(--black-mid);
  border-top: 3px solid var(--gold);
}
.player-detail-img {
  height: 240px;
  background: repeating-linear-gradient(45deg,#1a1a1a 0,#1a1a1a 6px,#111 6px,#111 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.player-detail-meta { padding: 1.25rem; }
.player-detail-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.player-detail-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.player-detail-info { display:flex; flex-direction:column; gap:0.4rem; margin-top: 1rem; }
.player-info-row { display:flex; justify-content:space-between; font-size: 0.75rem; padding: 0.35rem 0; border-bottom: 1px solid var(--dark); }
.player-info-row .info-label { color: var(--gray-3); }
.player-info-row .info-value { color: var(--white); font-weight: 600; }
.player-detail-stats {
  background: var(--black-mid);
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
}
.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark);
  margin-bottom: 1.5rem;
}
.player-stat-box {
  background: var(--black);
  padding: 1rem;
  text-align: center;
}
.player-stat-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.player-stat-lbl {
  font-size: 0.62rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.player-bio { font-size: 0.82rem; color: var(--gray-4); line-height: 1.75; }

/* ─────────────────────────────────────────────
   MOBILE DRAWER NAV
   ───────────────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 400;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open { display: flex; }
.nav-drawer-close {
  align-self: flex-end;
  font-size: 1.6rem;
  color: var(--gray-4);
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
  line-height: 1;
}
.nav-drawer-close:hover { color: var(--gold); }
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--dark);
  transition: color var(--transition);
  text-decoration: none;
}
.nav-drawer-links a i {
  color: var(--gold);
  font-size: 1rem;
  width: 1.4rem;
  text-align: center;
  flex-shrink: 0;
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active { color: var(--gold); }
.nav-drawer-join {
  display: block;
  margin-top: 1.5rem;
  padding: 0.9rem;
  background: var(--gold);
  color: #000;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  transition: background var(--transition);
  text-decoration: none;
}
.nav-drawer-join:hover { background: #fff; }
.nav-drawer-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0.5rem;
}
.nav-drawer-lang .lang-switcher {
  border-color: var(--gray-1);
}
.nav-drawer-lang .lang-btn {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
}
.nav-drawer-lang .lang-btn .fi {
  width: 18px;
  height: 13px;
}

/* ─────────────────────────────────────────────
   BOTTOM NAV (mobile only)
   ───────────────────────────────────────────── */
/* ── BOTTOM NAV — shown by default (mobile-first), hidden on desktop ── */
.bottom-nav {
  display: block;           /* visible on mobile by default */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #0d0d0d;
  border-top: 2px solid rgba(255,215,0,0.5);
  box-shadow: 0 -6px 28px rgba(0,0,0,0.8);
}
.bottom-nav-inner {
  display: flex;
  height: 64px;
  align-items: stretch;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #666;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  text-decoration: none;
}
.bottom-nav-item i {
  font-size: 1.3rem;
  display: block;
  transition: color 0.2s ease, transform 0.2s ease;
}
/* Gold indicator line at top of active item */
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
}
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--gold); }
.bottom-nav-item.active i { color: var(--gold); transform: translateY(-2px); }
/* Gold JOIN button */
.bottom-nav-join {
  background: var(--gold);
  color: #000 !important;
  font-weight: 900;
  font-size: 0.48rem;
}
.bottom-nav-join i { color: #000 !important; font-size: 1.1rem; }
.bottom-nav-join:hover { background: #fff; color: #000 !important; }
.bottom-nav-join.active::before { display: none; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

/* ── DESKTOP: hide mobile-only components ── */
@media (min-width: 768px) {
  .bottom-nav   { display: none; }   /* hide bottom nav on desktop */
  .nav-drawer   { display: none !important; }  /* hide drawer on desktop */
  .nav-hamburger { display: none; }  /* hide hamburger on desktop */
  body          { padding-bottom: 0; }
  /* Restore desktop nav */
  .nav-links    { display: flex !important; }
  .nav-actions  { display: flex; }
}

/* Tablet (768–1023px) */
@media (max-width: 1023px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { display: none; }
  .hero-badge-ring { width: 160px; height: 160px; }
}

/* Small tablet / large mobile (≤900px) */
@media (max-width: 900px) {
  .club-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge-wrap { display: none; }
  .player-detail-wrap { grid-template-columns: 1fr; }
}

/* Mobile (≤767px) — full mobile layout */
@media (max-width: 767px) {
  /* Prevent any horizontal overflow */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Body offset for fixed bottom nav */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

  /* Hide desktop nav on mobile */
  .nav-links { display: none !important; }
  .nav-actions { display: none; }

  /* Navbar */
  .navbar { padding: 0 1rem; height: 54px; }
  .nav-hamburger { margin-left: auto; }

  /* Announce bar */
  .announce-bar { padding: 0 0.75rem; }
  .announce-bar > div:first-child { display: none; }
  /* Socials fill the full bar; lang switcher pushed to right edge */
  .announce-socials { flex: 1; }
  .announce-lang    { margin-left: auto; }

  /* Section wrap */
  .section-wrap { padding: 0 1rem; }

  /* Hero */
  .hero { height: 420px; }
  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 80px;
  }
  /* CRITICAL: reset flex:1 so content stays at bottom */
  .hero-main { flex: 0 0 auto; max-width: 100%; padding-bottom: 0; }
  /* Title row: title + badge perfectly side-by-side on the same line */
  .hero-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-title { flex: 1; min-width: 0; font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: 0.7rem; }
  .hero-ctas { gap: 0.5rem; }
  /* Badge: pulled out of absolute flow, sits inside the title row */
  .hero-badge-wrap {
    position: static;
    transform: none;
    right: auto; top: auto;
    flex-shrink: 0;
    display: flex;
  }
  .hero-badge-ring { width: 80px; height: 80px; border-width: 2px; }
  .hero-badge-logo { width: 62px; height: 62px; }
  .hero-badge-label { font-size: 0.4rem; margin-top: 0.25rem; }
  /* Score bar: shrink items so all 3 fit inside viewport width */
  .score-item { flex: 1; min-width: 0; padding: 0.5rem 0.6rem; }
  .score-label { font-size: 0.52rem; letter-spacing: 0.1em; }
  .score-value { font-size: 0.78rem; letter-spacing: 0; }
  .score-sub { font-size: 0.52rem; }
  .score-cta { display: none; }

  /* News */
  .news-section { padding: 1.5rem 0 1rem; }
  .news-featured-img { height: 200px; }
  .news-small-row { grid-template-columns: 1fr; gap: 1px; }
  /* Horizontal news cards on mobile */
  .news-card-sm { display: flex; }
  .news-card-sm-img { width: 90px; min-height: 70px; height: auto; flex-shrink: 0; }
  .news-card-sm-body { padding: 0.6rem; }

  /* Stats band */
  .stats-band { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-item { flex: none; border-right: 1px solid var(--dark); border-bottom: 1px solid var(--dark); }
  .stat-num { font-size: 2rem; }
  .stat-lbl { font-size: 0.58rem; }

  /* Fixtures — vertical list */
  .fixtures-section { padding: 1.5rem 0; }
  .fixtures-strip { flex-direction: column; overflow-x: visible; }
  .fixture-card {
    flex: none; width: 100%;
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .fixture-competition { margin-bottom: 0; min-width: 55px; flex-shrink: 0; white-space: nowrap; }
  .fixture-teams { flex: 1; margin-bottom: 0; }
  .fixture-score-box { display: inline-block; margin: 0; font-size: 1.1rem; flex-shrink: 0; }
  .fixture-date { flex-shrink: 0; white-space: nowrap; }

  /* Spotlight */
  .spotlight-section { height: 160px; }
  .spotlight-name { font-size: 2.2rem; }
  .spotlight-content { padding: 0 1.25rem; }

  /* Club */
  .club-section { padding: 2rem 0; }
  .club-content h2 { font-size: 2rem; }
  .club-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dark); }
  .club-stat { padding: 0.75rem 0; border-right: none; background: var(--black-mid); }
  .club-stat .val { font-size: 1.5rem; }

  /* Newsletter */
  .newsletter-section { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.25rem 1rem; }
  .newsletter-form { flex: 1 1 100%; }

  /* Partners */
  .partners-section { padding: 1.5rem 0; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-card { height: 70px; }

  /* Footer */
  .footer { padding: 1.5rem 0 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-socials { flex-wrap: wrap; }

  /* Page header (inner pages) */
  .page-header { padding: 1.5rem 1rem; }
  .page-header h1 { font-size: 1.8rem; }

  /* Teams page */
  .teams-grid { grid-template-columns: 1fr; }
  .team-card-banner { height: 160px; }

  /* Players page */
  .players-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Extra-small phones (≤480px) — includes 412px portrait */
@media (max-width: 480px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .club-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  /* Keep 2 columns for player cards — 1 column is too wide */
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  /* Score bar text: tighter */
  .score-value { font-size: 0.72rem; letter-spacing: 0; }
  .score-label { font-size: 0.48rem; letter-spacing: 0.08em; }
  .score-sub   { font-size: 0.48rem; }
  /* Hero title fits narrow viewport */
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  /* Section heading */
  .section-heading h2 { font-size: 1.3rem; }
}

/* ══════════════════════════════════════════════════════════════════
   LANDSCAPE MOBILE — téléphones (h ≤ 500px)
   Samsung S20/S25/S26 Ultra  915×412
   Samsung S25+               926×428
   Samsung S25                900×412
   iPhone 14 Pro Max / 15+    932×430
   iPhone SE landscape        667×375
   ══════════════════════════════════════════════════════════════════ */
@media (orientation: landscape) and (max-height: 500px) {

  /* ── 1. Barres cachées → récupère ~80px de hauteur ── */
  .announce-bar { display: none !important; }
  .bottom-nav   { display: none !important; }
  body          { padding-bottom: 0 !important; overflow-x: hidden; }

  /* ── 2. Navbar compact (46px) ── */
  .navbar        { height: 46px; padding: 0 1.25rem; gap: 1rem; }
  .nav-logo-img  { width: 26px; height: 26px; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-links a   { height: 46px; padding: 0 0.55rem; font-size: 0.52rem; gap: 0.1rem; }
  .nav-links a i { font-size: 0.78rem; }
  .nav-actions   { gap: 0.5rem; }
  .btn-nav       { padding: 0.26rem 0.7rem; font-size: 0.6rem; }
  .lang-btn      { padding: 0.18rem 0.35rem; font-size: 0.56rem; }
  .lang-btn .fi  { width: 13px !important; height: 10px !important; }

  /* ── 3. Hero : remplit le viewport restant (~366px @ 412 total) ── */
  .hero {
    height: calc(100vh - 46px);
    min-height: 240px;
  }
  /* Texte empilé en bas à gauche */
  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;      /* stretch so hero-main can go full width */
    padding: 0.75rem 2rem 50px;
  }
  /* hero-main spans full content width so title-row can push badge to right edge */
  .hero-main     { flex: 0 0 auto; max-width: 100%; width: 100%; padding-bottom: 0; }
  .hero-season   { font-size: 0.58rem; margin-bottom: 0.2rem; letter-spacing: 0.15em; }
  /* Title row: title on the left, badge pinned to right edge */
  .hero-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
  }
  .hero-title    { flex: 0 0 auto; font-size: clamp(1.4rem, 3.8vw, 2rem); line-height: 0.88; margin-bottom: 0.5rem; }
  .hero-subtitle { display: none; }
  /* CTAs stay left, constrained so they don't stretch under the badge */
  .hero-ctas     { gap: 0.45rem; max-width: 55%; }
  .btn-hero-primary,
  .btn-hero-ghost { padding: 0.4rem 0.9rem; font-size: 0.7rem; }

  /* Badge : right edge, same line as title */
  .hero-badge-wrap { display: flex !important; position: static; right: auto; top: auto; transform: none; flex-shrink: 0; }
  .hero-badge-ring { width: 92px; height: 92px; border-width: 2px; box-shadow: 0 0 30px rgba(255,215,0,0.2); }
  .hero-badge-logo { width: 72px; height: 72px; }
  .hero-badge-label { font-size: 0.38rem; margin-top: 0.2rem; line-height: 1.4; }

  /* Barre de score compacte */
  .score-item   { flex: 1; min-width: 0; padding: 0.32rem 0.75rem; }
  .score-label  { font-size: 0.46rem; letter-spacing: 0.1em; }
  .score-value  { font-size: 0.78rem; letter-spacing: 0; }
  .score-sub    { font-size: 0.44rem; }
  .score-cta    { display: none; }

  /* ── 4. Ticker masqué → gain ~38px ── */
  .ticker { display: none; }

  /* ── 5. Actualités ── */
  .news-section      { padding: 0.875rem 0 0.75rem; }
  .news-featured-img { height: 155px; }
  /* 3 petites cartes côte à côte */
  .news-small-row    { grid-template-columns: repeat(3, 1fr); }
  .news-card-sm      { display: block; }
  .news-card-sm-img  { width: 100%; height: 65px; }
  .news-card-sm-body { padding: 0.5rem; }
  .news-card-sm-title { font-size: 0.72rem; }

  /* ── 6. Bande de stats ── */
  .stats-band { display: flex; }
  .stat-item  { padding: 0.65rem 0; }
  .stat-num   { font-size: 2rem; }

  /* ── 7. Résultats : carousel horizontal restauré ── */
  .fixtures-section { padding: 0.875rem 0; }
  .fixtures-strip   { flex-direction: row; overflow-x: auto; }
  .fixture-card     { flex: 0 0 155px; display: block; padding: 0.7rem 1rem; width: auto; }
  .fixture-competition { margin-bottom: 0.4rem; }
  .fixture-teams       { margin-bottom: 0.3rem; }
  .fixture-score-box   { display: block; margin: 0.2rem 0; }
  .fixture-date        { white-space: normal; }

  /* ── 8. Section Club : 2 colonnes ── */
  .club-section  { padding: 1rem 0; }
  .club-inner    { grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
  .club-content h2 { font-size: 1.8rem; }
  .club-stats    { grid-template-columns: repeat(4, 1fr); display: grid; }
  .club-stat .val { font-size: 1.3rem; }
  .club-pillar   { padding: 0.75rem; }

  /* ── 9. Newsletter : horizontale ── */
  .newsletter-section { flex-direction: row; gap: 1.5rem; padding: 0.875rem 1.5rem; align-items: center; }
  .newsletter-text h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
  .newsletter-form    { flex: 0 0 300px; }

  /* ── 10. Partenaires : 6 colonnes ── */
  .partners-section { padding: 0.75rem 0; }
  .partners-grid    { grid-template-columns: repeat(6, 1fr); }
  .partner-card     { height: 60px; }

  /* ── 11. Footer compact ── */
  .footer { padding: 1rem 0 0.75rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 1.5rem; }
  .footer-brand { grid-column: auto !important; }
  .footer-bottom { padding: 0.6rem 0; }

  /* ── 12. Espacements et titres ── */
  .section-wrap    { padding: 0 1.25rem; }
  .section-heading { margin-bottom: 0.75rem; }
  .section-heading h2 { font-size: 1.4rem; }

  /* ── 13. Pages internes ── */
  .page-header    { padding: 0.75rem 1.25rem; }
  .page-header h1 { font-size: 1.5rem; }
  .teams-grid     { grid-template-columns: repeat(2, 1fr) !important; }
  .team-card-banner { height: 120px; }
  .players-grid   { grid-template-columns: repeat(4, 1fr) !important; }
}
