/* =============================================
   FootballNewss – Main Stylesheet
   Palette: Deep Night #0D0F14 | Pitch Green #00C853 | 
            Steel Grey #1C2028 | Muted Text #8A929F | White #FFFFFF
   ============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:        #0D0F14;
  --clr-surface:   #1C2028;
  --clr-surface2:  #252A33;
  --clr-green:     #00C853;
  --clr-green-dim: #009C40;
  --clr-text:      #FFFFFF;
  --clr-muted:     #8A929F;
  --clr-border:    #2A303C;
  --clr-live:      #FF3B30;
  --ff-display:    'Barlow Condensed', sans-serif;
  --ff-body:       'Inter', sans-serif;
  --radius:        6px;
  --max-w:         1280px;
  --transition:    0.2s ease;
}

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---- Utility ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--clr-green);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-green { background: var(--clr-green); color: #000; }
.btn-green:hover { background: #00e060; }
.btn-outline { background: transparent; border: 1px solid var(--clr-border); color: var(--clr-muted); }
.btn-outline:hover { border-color: var(--clr-green); color: var(--clr-green); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--clr-live);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,15,20,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}

.site-logo {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  flex-shrink: 0;
}
.site-logo span { color: var(--clr-green); }

/* Search bar */
.header-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 8px 14px 8px 36px;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 13px;
  transition: var(--transition);
}
.header-search input::placeholder { color: var(--clr-muted); }
.header-search input:focus { outline: none; border-color: var(--clr-green); }
.header-search svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-muted);
  width: 16px;
  height: 16px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Main Nav */
.main-nav {
  border-top: 1px solid var(--clr-border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
  white-space: nowrap;
}
.main-nav ul li a {
  display: flex;
  align-items: center;
  height: 44px;
  padding-inline: 16px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--clr-text);
  border-color: var(--clr-green);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text);
  padding: 6px;
}

/* =============================================
   TICKER
   ============================================= */
.ticker-bar {
  background: var(--clr-green);
  padding: 7px 0;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #000;
  color: var(--clr-green);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding-inline: 16px;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 35s linear infinite;
  padding-left: 120px;
}
.ticker-track span {
  color: #000;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--clr-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.hero-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--clr-surface);
  min-height: 480px;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.97) 0%, rgba(13,15,20,0.3) 60%, transparent 100%);
}
.hero-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.hero-category {
  display: inline-block;
  background: var(--clr-green);
  color: #000;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero-meta { display: flex; align-items: center; gap: 14px; }
.hero-meta span {
  font-size: 12px;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Side stories */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.side-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.side-card:hover { border-color: var(--clr-green); }
.side-card-img {
  width: 110px;
  height: 84px;
  object-fit: cover;
  flex-shrink: 0;
}
.side-card-body {
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.side-card-cat {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 4px;
}
.side-card-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--clr-text);
}
.side-card-time {
  font-size: 11px;
  color: var(--clr-muted);
  margin-top: 6px;
}

/* =============================================
   SCORES / MATCHES
   ============================================= */
.scores-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--clr-border);
}

.scores-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
}
.scores-tabs button {
  background: none;
  border: none;
  padding: 7px 16px;
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-muted);
  cursor: pointer;
  transition: var(--transition);
}
.scores-tabs button.active,
.scores-tabs button:hover {
  background: var(--clr-green);
  color: #000;
}

.scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.match-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
}
.match-card:hover { border-color: var(--clr-green); }

.match-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.match-league {
  font-size: 11px;
  color: var(--clr-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.team-crest {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--clr-green);
  overflow: hidden;
  flex-shrink: 0;
}
.team-crest img { width: 100%; height: 100%; object-fit: contain; }
.team-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
}

.match-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.score-display {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}
.score-display .separator { color: var(--clr-muted); margin-inline: 2px; }
.match-minute {
  font-size: 11px;
  color: var(--clr-muted);
}

/* =============================================
   HIGHLIGHTS
   ============================================= */
.highlights-section { padding: 48px 0; border-bottom: 1px solid var(--clr-border); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.highlight-card:hover { border-color: var(--clr-green); transform: translateY(-2px); }

.highlight-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--clr-surface2);
  overflow: hidden;
}
.highlight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: var(--transition);
}
.play-btn:hover { background: rgba(0,0,0,0.6); }
.play-btn svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.highlight-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 3px;
}

.highlight-body { padding: 16px; }
.highlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.highlight-cat {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
}
.highlight-time { font-size: 11px; color: var(--clr-muted); }
.highlight-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
}

/* =============================================
   NEWS GRID
   ============================================= */
.news-section { padding: 48px 0; border-bottom: 1px solid var(--clr-border); }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

.news-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { border-color: var(--clr-green); }
.news-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.news-card-body { padding: 16px; }
.news-card-cat {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 8px;
}
.news-card-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.news-card-meta { display: flex; gap: 12px; font-size: 11px; color: var(--clr-muted); }

/* Sidebar */
.news-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-widget-title {
  padding: 14px 16px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--clr-green);
  border-radius: 2px;
}

.top-stories-list { padding: 8px 0; }
.top-story-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.top-story-item:last-child { border-bottom: none; }
.top-story-item:hover { background: var(--clr-surface2); }
.top-story-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--clr-border);
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
}
.top-story-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--clr-text);
}

/* Standings table */
.standings-table { width: 100%; border-collapse: collapse; }
.standings-table th {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}
.standings-table th:first-child { text-align: left; padding-left: 16px; }
.standings-table td {
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--clr-border);
}
.standings-table td:first-child { text-align: left; padding-left: 16px; }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: var(--clr-surface2); }
.standings-table .pos { color: var(--clr-muted); font-size: 11px; }
.standings-table .team-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
}
.standings-table .mini-crest {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--clr-green);
  flex-shrink: 0;
}
.pts { font-weight: 700; color: var(--clr-text) !important; }
.form-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 1px;
}
.form-dot.w { background: var(--clr-green); }
.form-dot.d { background: #F0A500; }
.form-dot.l { background: var(--clr-live); }

/* =============================================
   RESULTS SECTION
   ============================================= */
.results-section { padding: 48px 0; border-bottom: 1px solid var(--clr-border); }

.results-list { display: flex; flex-direction: column; gap: 8px; }

.result-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.result-item:hover { border-color: var(--clr-green); }

.result-team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
}
.result-team.away { flex-direction: row-reverse; text-align: right; }
.result-score-box {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  padding: 6px 16px;
  background: var(--clr-surface2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-score-box .sep { color: var(--clr-muted); }
.result-date {
  font-size: 11px;
  color: var(--clr-muted);
  white-space: nowrap;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--clr-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--clr-green); color: var(--clr-green); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--clr-text);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-green); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--clr-muted); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--clr-green); }

/* =============================================
   SINGLE ARTICLE
   ============================================= */
.single-article { padding: 48px 0; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.article-header { margin-bottom: 28px; }
.article-cats { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.article-cat-tag {
  background: var(--clr-green);
  color: #000;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.article-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.article-subtitle {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
}
.author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-surface2);
  overflow: hidden;
}
.author-name { font-weight: 600; font-size: 14px; }
.article-date { font-size: 13px; color: var(--clr-muted); }

.article-featured-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d5de;
}
.article-content h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-text);
  margin: 32px 0 14px;
}
.article-content p { margin-bottom: 18px; }
.article-content blockquote {
  border-left: 3px solid var(--clr-green);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--clr-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
  margin-top: 32px;
  flex-wrap: wrap;
}
.share-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}
.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #000;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { min-height: 360px; }
  .hero-side { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav.open ul { flex-direction: column; height: auto; }
  .main-nav.open ul li a { height: 44px; }
  .menu-toggle { display: flex; }
  .header-search { display: none; }
  .hero-side { grid-template-columns: 1fr; }
  .news-main-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .result-item { grid-template-columns: 1fr; gap: 10px; }
  .result-team.away { flex-direction: row; text-align: left; }
  .scores-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* =============================================
   RELEASE 2 — MATCH CARDS & LIVE CENTER
   ============================================= */

/* ── Match Card ─────────────────────────────── */
.match-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.match-card:hover { border-color: var(--clr-green); transform: translateY(-2px); }
.match-card--live { border-color: rgba(255,59,48,0.4); }
.match-card--live:hover { border-color: var(--clr-live); }
.match-card--highlight { border-color: rgba(114,9,183,0.3); }

.match-card__inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.match-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.match-card__competition {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* Status badges */
.match-card__badge {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.match-card__badge--upcoming  { background: rgba(240,165,0,0.15);  color: #f0a500; }
.match-card__badge--live      { background: rgba(255,59,48,0.15);  color: var(--clr-live); }
.match-card__badge--finished  { background: rgba(42,157,143,0.15); color: #2a9d8f; }
.match-card__badge--highlight { background: rgba(114,9,183,0.15);  color: #a855f7; }
.match-card__minute { color: var(--clr-muted); font-size: 10px; }

/* Teams & Score */
.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.match-card__team--away { align-items: center; }
.match-card__crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--clr-green);
  flex-shrink: 0;
}
.match-card__team-name {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.match-card__score {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.match-card__score-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.match-card__score-sep { font-family: var(--ff-display); font-size: 20px; color: var(--clr-muted); }
.match-card__kickoff-time {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-muted);
}
.match-card__score-dash { font-size: 22px; color: var(--clr-muted); }

/* Card Footer */
.match-card__footer {
  border-top: 1px solid var(--clr-border);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-card__countdown {
  font-size: 12px;
  color: var(--clr-muted);
  font-family: var(--ff-display);
  font-weight: 600;
}
.match-card__cta {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.match-card__cta--live { color: var(--clr-live); }
.match-card__cta--highlight { color: #a855f7; }

/* Live dot animation */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--clr-live);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* ── Live Center ─────────────────────────────── */
.live-center-page { padding: 40px 0 60px; }

.lc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.lc-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.lc-title span { color: var(--clr-green); }

/* Live header */
.lc-live-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.lc-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-live);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 5px;
}
.lc-live-count {
  font-size: 13px;
  color: var(--clr-muted);
  font-family: var(--ff-display);
}

/* Featured Match (Live or Upcoming) */
.lc-featured {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
}
.lc-featured--upcoming { border-color: rgba(240,165,0,0.3); }
.lc-featured__label {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}
.lc-featured__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.lc-featured__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 180px;
}
.lc-featured__crest {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--clr-green);
}
.lc-featured__name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.lc-featured__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}
.lc-featured__score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.lc-featured__sep { color: var(--clr-muted); font-size: 36px; }
.lc-featured__minute {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-live);
}
.lc-featured__competition {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.lc-featured__kickoff {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-text);
}
.lc-featured__watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-live);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
}
.lc-featured__watch-btn:hover { background: #ff5252; transform: scale(1.02); }

/* Countdown */
.lc-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.lc-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
}
.lc-countdown__num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--clr-green);
  line-height: 1;
}
.lc-countdown__label {
  font-family: var(--ff-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.lc-countdown__sep {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-muted);
  padding-bottom: 16px;
}

/* Matches grid */
.lc-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

/* Section titles */
.lc-section-title {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-section-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--clr-green);
  border-radius: 2px;
}
.lc-section-title--upcoming::before { background: #f0a500; }

/* Empty state */
.lc-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--clr-muted);
}
.lc-empty__icon { font-size: 48px; margin-bottom: 16px; }
.lc-empty h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 800; color: var(--clr-text); margin-bottom: 8px; }

/* ── Highlight Card ──────────────────────────── */
.highlight-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.highlight-card:hover { border-color: var(--clr-green); transform: translateY(-2px); }

.highlight-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--clr-surface2);
}
.highlight-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.highlight-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.highlight-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.highlight-card__play:hover { background: rgba(0,0,0,0.55); }
.highlight-card__play svg { width: 52px; height: 52px; color: #fff; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6)); }
.highlight-card__score-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.95), transparent);
  padding: 20px 14px 10px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.highlight-card__score-overlay strong { color: var(--clr-green); font-size: 16px; }

.highlight-card__body { padding: 14px; }
.highlight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.highlight-card__competition {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
}
.highlight-card__date { font-size: 11px; color: var(--clr-muted); }
.highlight-card__title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.highlight-card__summary { font-size: 12px; color: var(--clr-muted); line-height: 1.5; }

/* ── Homepage: Live Now Section ──────────────── */
#hp-live-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--clr-border);
}
.hp-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.hp-live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.hp-live-label .live-dot { width: 10px; height: 10px; }
.hp-live-count {
  background: var(--clr-live);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
}

/* ── Highlights Grid ─────────────────────────── */
.highlights-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--clr-border);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}


/* =============================================
   SINGLE MATCH PAGE
   ============================================= */

.match-page { padding: 0 0 60px; }

.match-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 12px;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 32px;
}
.match-breadcrumb a:hover { color: var(--clr-green); }
.match-breadcrumb span { color: var(--clr-border); }
.match-breadcrumb span:last-child { color: var(--clr-muted); }

/* Match Header */
.match-header {
  text-align: center;
  margin-bottom: 36px;
}
.match-header__competition {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 12px;
}
.match-header__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.match-header__status-badge--upcoming  { background: rgba(240,165,0,0.15);  color: #f0a500; }
.match-header__status-badge--live      { background: rgba(255,59,48,0.15);  color: var(--clr-live); }
.match-header__status-badge--finished  { background: rgba(42,157,143,0.15); color: #2a9d8f; }
.match-header__status-badge--highlight { background: rgba(114,9,183,0.15);  color: #a855f7; }

.match-header__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}
.match-header__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 200px;
}
.match-header__crest {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--clr-green);
}
.match-header__team-name {
  font-family: var(--ff-display);
  font-size: clamp(18px,2.5vw,26px);
  font-weight: 900;
  text-align: center;
}
.match-header__center { min-width: 160px; }
.match-header__score {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-size: clamp(48px,8vw,80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  justify-content: center;
}
.match-header__score-sep { color: var(--clr-muted); font-size: 0.6em; }
.match-header__kickoff {
  font-family: var(--ff-display);
  font-size: clamp(28px,5vw,48px);
  font-weight: 900;
  color: var(--clr-muted);
  text-align: center;
}
.match-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
}

/* Match Body */
.match-body { margin-bottom: 40px; }
.match-countdown-label {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
  text-align: center;
}

/* Player */
.match-player { margin-bottom: 24px; }
.match-player__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.match-player__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* No stream state */
.match-no-stream {
  text-align: center;
  padding: 60px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
}
.match-no-stream__icon { font-size: 48px; margin-bottom: 16px; }
.match-no-stream h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.match-no-stream p { font-size: 14px; color: var(--clr-muted); }

/* Summary */
.match-summary {
  background: var(--clr-surface);
  border-left: 3px solid var(--clr-green);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 15px;
  color: #c8cdd6;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Finished image */
.match-finished-img img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  max-height: 400px;
  object-fit: cover;
}

/* Related & Highlights sections */
.match-related, .match-highlights { margin-top: 48px; }

/* =============================================
   HOMEPAGE ADDITIONS
   ============================================= */

#hp-fixtures-section { padding: 40px 0; border-bottom: 1px solid var(--clr-border); }

@media (max-width: 768px) {
  .match-header__teams { gap: 12px; }
  .match-header__crest { width: 56px; height: 56px; font-size: 14px; }
  .lc-featured__teams { flex-direction: column; gap: 16px; }
  .lc-featured__team--away { flex-direction: column; }
  .lc-featured { padding: 20px 16px; }
  .lc-countdown__num { font-size: 28px; }
  .lc-matches-grid { grid-template-columns: 1fr; }
}


/* =============================================
   HOOFOOT-STYLE REDESIGN
   ============================================= */

/* ── Header adjustments ─────────────────────── */
.header-top { gap: 16px; }
.site-tagline {
  font-size: 11px;
  color: var(--clr-muted);
  font-family: var(--ff-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 640px) { .site-tagline { display: inline; } }

/* Competition mega menu */
.comp-menu {
  display: flex;
  align-items: center;
  height: 44px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.comp-menu::-webkit-scrollbar { display: none; }
.comp-menu > li {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}
.comp-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  padding-inline: 14px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: var(--transition);
}
.comp-menu > li > a:hover { color: var(--clr-green); }
.comp-menu__flag {
  font-size: 14px;
  line-height: 1;
  margin-inline-end: 2px;
}

.comp-menu__has-dropdown { position: relative; }
.comp-dropdown {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 0 0 8px 8px;
  min-width: 200px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  z-index: 100;
  padding: 6px 0;
}
.comp-menu__has-dropdown:hover .comp-dropdown { display: block; }
.comp-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--clr-text);
  transition: var(--transition);
}
.comp-dropdown li a:hover { background: var(--clr-surface2); color: var(--clr-green); padding-left: 20px; }

/* ── Quick League Bar (secondary row) ─────────── */
.quick-leagues {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}
.quick-leagues__list {
  display: flex;
  align-items: center;
  height: 36px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 2px;
}
.quick-leagues__list::-webkit-scrollbar { display: none; }
.quick-leagues__list li { flex-shrink: 0; }
.quick-leagues__list li a {
  display: flex;
  align-items: center;
  height: 36px;
  padding-inline: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-right: 1px solid var(--clr-border);
  transition: var(--transition);
}
.quick-leagues__list li:last-child a { border-right: none; }
.quick-leagues__list li a:hover { color: var(--clr-green); background: var(--clr-surface); }

/* ── Popular Clubs strip ─────────────────────── */
.popular-clubs {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.popular-clubs__label {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
}
.popular-clubs__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.popular-clubs__track::-webkit-scrollbar { display: none; }
.popular-clubs__item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 5px 12px 5px 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text);
  transition: var(--transition);
}
.popular-clubs__item:hover { border-color: var(--clr-green); color: var(--clr-green); }
.popular-clubs__crest {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 0;
}

/* ── Live Strip (compact) ───────────────────── */
.live-strip {
  background: linear-gradient(90deg, rgba(255,59,48,0.08), transparent);
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
}
.live-strip .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.live-strip__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-live);
  flex-shrink: 0;
}
.live-strip__arrow { color: var(--clr-muted); margin-left: 4px; }
.live-strip__track { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.live-strip__track::-webkit-scrollbar { display: none; }
.live-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.live-strip__item strong { color: var(--clr-green); font-family: var(--ff-display); }

/* ── Previews strip ──────────────────────────── */
.previews-strip { padding: 20px 0; border-bottom: 1px solid var(--clr-border); }
.previews-strip__label {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.previews-strip__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.previews-strip__track::-webkit-scrollbar { display: none; }
.preview-card {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 10px 16px;
  transition: var(--transition);
  min-width: 280px;
}
.preview-card:hover { border-color: var(--clr-green); }
.preview-card__team {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  flex: 1;
}
.preview-card__team--away { flex-direction: row-reverse; text-align: right; }
.preview-card__crest {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--clr-green);
  flex-shrink: 0;
}
.preview-card__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: var(--clr-muted);
  flex-shrink: 0;
  min-width: 64px;
}
.preview-card__vs { font-family: var(--ff-display); font-weight: 800; color: var(--clr-text); font-size: 11px; }
.preview-card__time { color: var(--clr-green); font-weight: 700; }

/* ── HooFoot Grid Layout ─────────────────────── */
.hf-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  padding: 28px 0 48px;
}
.hf-main { min-width: 0; }

.hf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* HooFoot Thumbnail Card */
.hf-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.hf-card:hover { transform: translateY(-3px); border-color: var(--clr-green); }
.hf-card__link { display: block; color: inherit; }

.hf-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--clr-surface2);
  overflow: hidden;
}
.hf-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hf-card:hover .hf-card__thumb img { transform: scale(1.06); }
.hf-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.hf-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity var(--transition);
}
.hf-card:hover .hf-card__play { opacity: 1; }
.hf-card__play svg { width: 36px; height: 36px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.hf-card__comp-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0,0,0,0.75);
  color: var(--clr-green);
  font-family: var(--ff-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
}

.hf-card__body { padding: 10px 12px; }
.hf-card__title {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hf-card__time { font-size: 11px; color: var(--clr-muted); }

/* Load more button */
.hf-loadmore-wrap { display: flex; justify-content: center; margin-top: 32px; }

/* Empty state */
.hf-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--clr-muted); }
.hf-empty__icon { font-size: 48px; margin-bottom: 14px; }
.hf-empty h3 { font-family: var(--ff-display); font-size: 18px; color: var(--clr-text); margin-bottom: 6px; }

/* ── Compact Sidebar ──────────────────────────── */
.hf-sidebar { display: flex; flex-direction: column; gap: 20px; }

.hf-news-compact { padding: 6px 0; }
.hf-news-compact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.hf-news-compact__item:last-child { border-bottom: none; }
.hf-news-compact__item:hover { background: var(--clr-surface2); }
.hf-news-compact__img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.hf-news-compact__title {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-text);
}

.hf-comp-list { padding: 8px 0; }
.hf-comp-list li a {
  display: block;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.hf-comp-list li:last-child a { border-bottom: none; }
.hf-comp-list li a:hover { color: var(--clr-green); padding-left: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .hf-layout { grid-template-columns: 1fr; }
  .hf-sidebar { order: -1; flex-direction: row; overflow-x: auto; }
  .hf-sidebar .sidebar-widget { min-width: 280px; flex-shrink: 0; }
}
@media (max-width: 640px) {
  .hf-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hf-card__title { font-size: 12px; }
  .popular-clubs__item span.popular-clubs__name { display: none; }
  .preview-card { min-width: 240px; }
  .hf-sidebar { flex-direction: column; }
  .hf-sidebar .sidebar-widget { min-width: 0; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .comp-menu { flex-direction: column; height: auto; align-items: stretch; }
  .comp-menu > li { height: auto; }
  .comp-menu > li > a { height: 44px; }
  .comp-menu__has-dropdown.open .comp-dropdown {
    display: block;
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--clr-surface2);
  }
  .quick-leagues { display: none; }
}
