/*
Theme Name: Football Hub 60140
Theme URI: https://60140.com
Description: Light magazine-style football site - sidebar nav, league-colored sections, editorial layout
Version: 1.0.0
Author: 60140.com
Text Domain: football-hub-60140
*/

/* ============================================================
   CSS VARIABLES - League brand colors
   ============================================================ */
:root {
  --bg: #f7f8fc;
  --sidebar-bg: #1a1f2e;
  --sidebar-text: #c8d0e0;
  --sidebar-text-active: #ffffff;
  --sidebar-accent: #e94560;
  --card-bg: #ffffff;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --text-primary: #1a1f2e;
  --text-secondary: #5a6274;
  --text-muted: #8b92a5;
  --border: #e4e7ef;
  --border-light: #f0f1f6;

  /* League brand colors */
  --pl: #38003d;
  --pl-light: #e90052;
  --ucl: #1c3d6e;
  --ucl-light: #002868;
  --laliga: #ee8707;
  --bundesliga: #d20515;

  /* Section accent bars */
  --accent-bar: #e94560;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bar); }

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

/* ============================================================
   LAYOUT: SIDEBAR + MAIN CONTENT
   ============================================================ */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  padding: 1.75rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.sidebar-logo .emoji { font-size: 1.5rem; }
.sidebar-logo .tagline {
  font-size: 0.7rem;
  color: var(--sidebar-text);
  margin-top: 0.2rem;
  font-weight: 400;
}

.sidebar-nav { padding: 1.25rem 0; flex: 1; }

.sidebar-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem 0.4rem;
  margin-top: 0.5rem;
}

.sidebar-nav ul { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  color: var(--sidebar-text);
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background: rgba(255,255,255,0.06);
  color: var(--sidebar-text-active);
  border-left-color: var(--accent-bar);
}
.sidebar-nav li a .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sidebar-nav li a .arrow {
  margin-left: auto;
  font-size: 0.65rem;
  opacity: 0;
  transition: opacity 0.15s;
}
.sidebar-nav li a:hover .arrow { opacity: 1; }

.sidebar-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.7rem;
  color: rgba(200,208,224,0.4);
}

/* ── Main Content ── */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 2rem 2.5rem;
  max-width: 1100px;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.page-topbar h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.page-topbar h1 .accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-bar);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-top: -3px;
}
.page-topbar .count {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--card-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ============================================================
   LEAGUE COLOR SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.section-header.pl    { border-color: var(--pl-light); }
.section-header.ucl   { border-color: var(--ucl-light); }
.section-header.laliga { border-color: var(--laliga); }
.section-header.bundesliga { border-color: var(--bundesliga); }

.section-header h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.section-header.pl    .badge-dot { background: var(--pl-light); }
.section-header.ucl   .badge-dot { background: var(--ucl-light); }
.section-header.laliga .badge-dot { background: var(--laliga); }
.section-header.bundesliga .badge-dot { background: var(--bundesliga); }

/* ============================================================
   CARD: LEAGUE (vertical info card)
   ============================================================ */
.card-league {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.card-league:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.card-league .league-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 14px 14px 0 0;
}
.card-league.pl    .league-stripe { background: var(--pl-light); }
.card-league.ucl   .league-stripe { background: var(--ucl-light); }
.card-league.laliga .league-stripe { background: var(--laliga); }
.card-league.bundesliga .league-stripe { background: var(--bundesliga); }

.card-league .league-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.card-league h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.card-league .league-country {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.card-league .league-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.card-league .league-stat {
  background: var(--bg);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
}
.card-league .league-stat .num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.card-league .league-stat .lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-league .view-btn {
  display: block;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.card-league:hover .view-btn {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

/* ============================================================
   CARD: TEAM (logo + info, grid item)
   ============================================================ */
.card-team {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.card-team:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
.card-team .team-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--bg);
  padding: 4px;
  flex-shrink: 0;
}
.card-team .team-info { flex: 1; min-width: 0; }
.card-team .team-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-team .team-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.card-team .team-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(233,69,96,0.1);
  color: var(--accent-bar);
  flex-shrink: 0;
}

/* ============================================================
   CARD: H2H (horizontal, two teams side by side)
   ============================================================ */
.card-h2h {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.card-h2h:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
.card-h2h .h2h-team {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.card-h2h .h2h-team.right { flex-direction: row-reverse; text-align: right; }
.card-h2h .h2h-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.card-h2h .h2h-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-h2h .h2h-record {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.card-h2h .h2h-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
  min-width: 60px;
}
.card-h2h .h2h-vs {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-bar);
}
.card-h2h .h2h-league-chip {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-leagues {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.grid-teams {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.grid-h2h {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   INLINE STANDINGS TABLE (league detail)
   ============================================================ */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.standings-table th {
  background: var(--text-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.65rem 0.75rem;
  text-align: left;
}
.standings-table th:not(:first-child) { text-align: center; }
.standings-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border-light); }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: var(--bg); }
.standings-table tr.top4 td { background: rgba(16,185,129,0.05); font-weight: 600; }
.standings-table tr.top4 td:first-child { border-left: 3px solid #10b981; padding-left: calc(0.75rem - 3px); }
.standings-table .pos { color: var(--text-muted); font-size: 0.75rem; }
.standings-table .pos.top { color: #10b981; font-weight: 700; }
.standings-table .team-cell { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.standings-table .team-logo-sm {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--bg);
  padding: 1px;
}
.standings-table .num { text-align: center; font-variant-numeric: tabular-nums; }
.standings-table .pts { text-align: center; font-weight: 700; color: var(--text-primary); }
.standings-table .gd.pos { color: #10b981; }
.standings-table .gd.neg { color: var(--accent-bar); }

/* ============================================================
   LEAGUE INFO CARD (top of league detail page)
   ============================================================ */
.league-info-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.league-info-bar .li-emoji { font-size: 2.5rem; }
.league-info-bar .li-name {
  font-size: 1.25rem;
  font-weight: 700;
}
.league-info-bar .li-country {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.league-info-bar .li-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.league-info-bar .li-stat {
  text-align: center;
}
.league-info-bar .li-stat .n {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.league-info-bar .li-stat .l {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-bar); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   BACK LINK
   ============================================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--accent-bar); }

/* ============================================================
   SINGLE TEAM PAGE
   ============================================================ */
.team-profile {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.team-profile .tp-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--bg);
  padding: 8px;
}
.team-profile .tp-info h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}
.team-profile .tp-sub {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.team-profile .tp-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   H2H DETAIL PAGE
   ============================================================ */
.h2h-detail-header {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.h2h-detail-team { flex: 1; }
.h2h-detail-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  border-radius: 12px;
  background: var(--bg);
  padding: 6px;
}
.h2h-detail-name { font-size: 1.1rem; font-weight: 700; }
.h2h-detail-center { min-width: 80px; }
.h2h-detail-vs {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-bar);
}
.h2h-detail-league-chip {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* H2H stats bar */
.h2h-stats-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.h2h-stat-pill {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 80px;
  box-shadow: var(--card-shadow);
}
.h2h-stat-pill .sp-val {
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.h2h-stat-pill .sp-val.team-a { color: var(--text-primary); }
.h2h-stat-pill .sp-val.draw { color: var(--text-muted); }
.h2h-stat-pill .sp-val.team-b { color: var(--text-primary); }
.h2h-stat-pill .sp-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  max-width: 280px;
}
.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links ul li a { font-size: 0.825rem; color: var(--text-secondary); }
.footer-links ul li a:hover { color: var(--accent-bar); }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.825rem;
  color: var(--text-secondary);
  background: var(--card-bg);
  transition: all 0.15s;
}
.pagination a:hover { border-color: var(--accent-bar); color: var(--accent-bar); }
.pagination .current { background: var(--accent-bar); border-color: var(--accent-bar); color: #fff; }

/* ============================================================
   NO CONTENT
   ============================================================ */
.no-content {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .layout { flex-direction: column; }
  .sidebar {
    width: 100%;
    min-width: unset;
    height: auto;
    position: static;
    flex-direction: row;
    overflow-x: auto;
  }
  .sidebar-logo, .sidebar-footer { display: none; }
  .sidebar-nav { display: flex; padding: 0; }
  .sidebar-section-label { display: none; }
  .sidebar-nav ul { display: flex; }
  .sidebar-nav li a { padding: 0.75rem 1rem; border-left: none; border-bottom: 2px solid transparent; white-space: nowrap; }
  .sidebar-nav li a:hover,
  .sidebar-nav li a.active { border-left: none; border-bottom-color: var(--accent-bar); }
  .main-content { padding: 1.25rem; }
  .grid-leagues { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .grid-h2h { grid-template-columns: 1fr; }
  .h2h-detail-header { flex-direction: column; gap: 1rem; }
  .team-profile { flex-direction: column; text-align: center; }
  .team-profile .tp-sub { justify-content: center; }
}

@media (max-width: 480px) {
  .grid-teams { grid-template-columns: 1fr; }
  .page-topbar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* === Player profile === */
.player-profile{display:grid;grid-template-columns:1fr 240px;gap:24px;margin:8px 0 24px}
.player-card-main{background:#fff;border:1px solid #ececf1;border-radius:14px;padding:22px;display:flex;gap:20px}
.player-photo{width:96px;height:96px;border-radius:50%;background:#11162b;color:#fff;display:flex;align-items:center;justify-content:center;font-size:40px;font-weight:700;flex:0 0 auto}
.player-meta{flex:1}
.pm-row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid #f1f1f5;font-size:14px}
.pm-k{color:#8a8a99}.pm-v{font-weight:600;color:#11162b}
.player-stats{display:flex;flex-direction:column;gap:16px}
.ps-box{background:#fff;border:1px solid #ececf1;border-radius:14px;padding:18px;text-align:center}
.ps-n{display:block;font-size:34px;font-weight:800;color:#e94560}.ps-l{font-size:12px;color:#8a8a99}
.grid-players{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:14px;margin-top:10px}
.player-mini-card{background:#fff;border:1px solid #ececf1;border-radius:12px;padding:14px;display:flex;flex-direction:column;gap:4px;transition:.15s}
.player-mini-card:hover{border-color:#e94560;transform:translateY(-2px)}
.pmc-name{font-weight:700;color:#11162b}.pmc-pos{font-size:12px;color:#8a8a99}
/* === News === */
.news-article{max-width:760px;margin:8px 0 24px}
.news-title{font-size:30px;line-height:1.2;margin:6px 0 10px;color:#11162b}
.news-meta{display:flex;gap:8px;align-items:center;color:#8a8a99;font-size:13px;margin-bottom:16px}
.news-meta .dot{color:#ccc}.news-hero{width:100%;border-radius:14px;margin-bottom:18px}
.news-body{font-size:16px;line-height:1.8;color:#2a2a35}
.news-body p{margin:0 0 16px}
.news-tags{margin-top:18px;display:flex;flex-wrap:wrap;gap:8px}.tag{background:#f6f6fa;color:#555;padding:4px 10px;border-radius:20px;font-size:12px}
.grid-news{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px}
.news-card{background:#fff;border:1px solid #ececf1;border-radius:14px;padding:18px;display:flex;flex-direction:column;gap:8px;transition:.15s}
.news-card:hover{border-color:#e94560;transform:translateY(-2px)}
.nc-cat{font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:#e94560;font-weight:700}
.nc-title{font-size:17px;font-weight:700;color:#11162b;line-height:1.3}
.nc-ex{font-size:13px;color:#6a6a78;line-height:1.5}.nc-meta{font-size:12px;color:#9a9aa6;margin-top:auto}
.section-h{font-size:20px;color:#11162b;margin:26px 0 12px;border-left:4px solid #e94560;padding-left:10px}
/* === Fixtures === */
.fixture-league{margin:18px 0}
.fixture-list{display:flex;flex-direction:column;gap:8px}
.fixture-row{display:grid;grid-template-columns:54px 1fr 30px 1fr 56px 130px 1fr;align-items:center;gap:10px;background:#fff;border:1px solid #ececf1;border-radius:10px;padding:10px 14px;font-size:14px}
.fx-matchday{font-size:11px;color:#9a9aa6;font-weight:700}
.fx-team{font-weight:600;color:#11162b;text-decoration:none}.fx-team:hover{color:#e94560}
.fx-vs{text-align:center;color:#bbb;font-size:12px}.fx-score{text-align:center;font-weight:800;color:#e94560}
.fx-date{color:#6a6a78;font-size:12px}.fx-venue{color:#9a9aa6;font-size:12px;text-align:right}
@media(max-width:760px){.player-profile{grid-template-columns:1fr}.fixture-row{grid-template-columns:44px 1fr 24px 1fr;font-size:12px}.fx-score,.fx-date,.fx-venue{display:none}}
