:root {
  --bg: #0b0f1a;
  --surface: #111827;
  --surface2: #1a2236;
  --border: rgba(255,255,255,0.07);
  --primary: #00e5ff;
  --primary-dim: rgba(0,229,255,0.1);
  --accent: #ff3d71;
  --green: #00e676;
  --yellow: #ffea00;
  --orange: #ff6b00;
  --text: #e2e8f0;
  --muted: #64748b;
  --radius: 12px;
  --nav-h: 58px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, sans-serif; min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes slideUp { from{transform:translateY(28px);opacity:0} to{transform:translateY(0);opacity:1} }
@keyframes slideDown { from{transform:translateY(-100%)} to{transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes drawerIn { from{transform:translateX(-100%)} to{transform:translateX(0)} }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(11,15,26,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 0 16px;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; height: var(--nav-h); gap: 10px;
}
.logo {
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
  white-space: nowrap; display: flex; align-items: center; gap: 7px; flex-shrink: 0;
}
.logo span { color: #fff; }
.logo i { font-size: 1rem; }

/* Desktop nav links */
.nav-links {
  display: flex; gap: 2px; flex: 1; overflow-x: auto; scrollbar-width: none; justify-content: center;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  color: var(--muted); padding: 6px 12px; border-radius: 20px;
  font-size: 0.8rem; white-space: nowrap; transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { background: var(--primary-dim); color: var(--primary); }

/* Hamburger button */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(11,15,26,0.98); z-index: 998; flex-direction: column;
  padding: 20px 16px; gap: 6px; overflow-y: auto;
  animation: drawerIn 0.25s ease;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  font-size: 1rem; padding: 14px 18px; border-radius: 12px; justify-content: flex-start;
  border: 1px solid var(--border);
}
.nav-drawer .nav-link i { width: 22px; text-align: center; }
.nav-drawer-close { display: none; }

.live-badge {
  background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 3px 7px; border-radius: 10px; white-space: nowrap; flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ── PAGE WRAPPER ── */
.page-wrap { margin-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  padding: 48px 16px 30px; text-align: center;
  background: radial-gradient(ellipse at top, rgba(0,229,255,0.07) 0%, transparent 65%);
}
.hero h1 { font-size: clamp(1.7rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 10px; }
.hero h1 span { color: var(--primary); }
.hero p { color: var(--muted); font-size: .93rem; margin-bottom: 24px; }
.hero-stats { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.stat-pill {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  padding: 8px 16px; display: flex; align-items: center; gap: 7px; font-size: 0.84rem;
}
.stat-pill b { color: var(--primary); font-size: 1rem; }
.stat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 24px 16px 20px;
  background: radial-gradient(ellipse at top left, rgba(0,229,255,0.05) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.page-header h1 i { color: var(--primary); }
.page-header p { color: var(--muted); font-size: 0.85rem; margin-top: 5px; }

/* ── CONTAINER ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 14px; }
section { padding: 22px 0; }
.section-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 10px; flex-wrap: wrap;
}
.section-title { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: #fff; }
.section-title i { color: var(--primary); }
.section-link { font-size: 0.8rem; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.section-link:hover { text-decoration: underline; }

/* ── FILTER TABS ── */
.filter-row { display: flex; gap: 7px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); padding: 5px 13px; border-radius: 20px;
  font-size: 0.79rem; cursor: pointer; transition: all 0.2s; display: flex;
  align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary-dim); color: var(--primary); border-color: rgba(0,229,255,0.35); }

/* ── DATE TABS ── */
.date-tabs { display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-bottom: 20px; padding-bottom: 2px; }
.date-tabs::-webkit-scrollbar { display: none; }
.date-tab {
  padding: 7px 18px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer; font-size: 0.83rem; font-weight: 600;
  color: var(--muted); transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.date-tab.active, .date-tab:hover { background: var(--primary-dim); color: var(--primary); border-color: rgba(0,229,255,0.3); }
.date-group { display: none; }
.date-group.visible { display: block; animation: fadeIn 0.25s; }
.date-group-title {
  font-size: 0.73rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.date-group-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── MATCHES GRID ── */
.matches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }

/* ── MATCH CARD ── */
.match-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; transition: all 0.22s;
  position: relative; overflow: hidden; cursor: pointer; animation: fadeIn 0.3s;
}
.match-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
}
.match-card.live::before { background: linear-gradient(90deg, var(--accent), #ff6f00); animation: pulse 2s infinite; }
.match-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,229,255,0.09); border-color: rgba(0,229,255,0.22); }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.league-badge { font-size: 0.68rem; color: var(--muted); display: flex; align-items: center; gap: 5px; max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sport-chip { font-size: 0.64rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: .5px; flex-shrink: 0; }
.sport-chip.football { background: rgba(0,229,255,0.12); color: var(--primary); }
.sport-chip.basketball { background: rgba(255,107,0,0.12); color: var(--orange); }
.sport-chip.tennis { background: rgba(100,220,50,0.12); color: #64dc32; }
.sport-chip.other { background: rgba(150,100,255,0.12); color: #9664ff; }

.scoreboard { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 12px; }
.team { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; min-width: 0; }
.team-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: contain; background: var(--surface2); padding: 4px; }
.team-logo-placeholder { width: 38px; height: 38px; border-radius: 50%; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.team-name { font-size: 0.77rem; font-weight: 600; line-height: 1.2; width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vs-block { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.score { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: 1px; }
.score-divider { color: var(--muted); font-size: .9rem; margin: 0 2px; }
.status-badge { font-size: 0.64rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; white-space: nowrap; }
.status-badge.live { background: rgba(255,61,113,0.18); color: var(--accent); border: 1px solid rgba(255,61,113,0.5); }
.status-badge.ft { background: rgba(100,116,139,0.18); color: var(--muted); }
.status-badge.ns { background: rgba(0,229,255,0.1); color: var(--primary); }
.status-badge.ht { background: rgba(255,234,0,0.13); color: var(--yellow); }

.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.match-time { font-size: 0.7rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.watch-btn {
  background: linear-gradient(135deg, var(--primary), #0077ff); color: #000; font-weight: 700;
  font-size: 0.72rem; padding: 6px 12px; border-radius: 8px; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px; text-decoration: none; transition: all 0.2s; flex-shrink: 0;
}
.watch-btn:hover { opacity: 0.85; transform: scale(1.04); }

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.news-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.22s; cursor: pointer; animation: fadeIn 0.3s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); border-color: rgba(0,229,255,0.18); }
.news-thumb { width: 100%; height: 155px; object-fit: cover; display: block; background: var(--surface2); }
.news-thumb-ph {
  width: 100%; height: 155px; background: linear-gradient(135deg, var(--surface2), #1e2d47);
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--muted);
}
.news-body { padding: 12px; }
.news-tag { font-size: 0.64rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.news-title { font-size: 0.85rem; font-weight: 600; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-summary { font-size: 0.77rem; color: var(--muted); margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { font-size: 0.71rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ── SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%);
  background-size: 200% 100%; animation: shimmer 1.6s infinite; border-radius: var(--radius);
}
.skel-card { height: 170px; }
.skel-news { height: 250px; }

/* ── EMPTY ── */
.empty { text-align: center; padding: 44px 16px; color: var(--muted); grid-column: 1/-1; }
.empty i { font-size: 2.2rem; margin-bottom: 10px; display: block; opacity: .35; }
.empty p { font-size: 0.88rem; }

/* ── ERROR BANNER ── */
.error-banner {
  background: rgba(255,61,113,0.09); border: 1px solid rgba(255,61,113,0.3);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 14px;
  font-size: 0.82rem; color: #ff8fab; display: none; align-items: center; gap: 10px;
}
.error-banner.show { display: flex; }

/* ── MODAL ── */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  animation: slideUp 0.22s ease;
}
.modal-head {
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.modal-head h3 { font-size: .95rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 2px; }
.modal-close:hover { color: #fff; }
.modal-body { padding: 16px; }
.modal-score-block {
  display: flex; align-items: center; gap: 12px; margin: 14px 0; padding: 14px;
  background: var(--surface2); border-radius: 12px;
}
.modal-team { text-align: center; flex: 1; min-width: 0; }
.modal-team-name { font-weight: 700; font-size: 0.88rem; margin-top: 6px; }
.modal-score-nums { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.modal-score-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.modal-score-dash { font-size: 1.2rem; color: var(--muted); }
.modal-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.info-item { background: var(--surface2); border-radius: 8px; padding: 9px 12px; }
.info-label { font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.info-value { font-size: 0.85rem; font-weight: 600; }
.streams-section { margin-top: 12px; }
.streams-section-title { font-size: 0.73rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.streams-list { display: flex; flex-direction: column; gap: 8px; }
.stream-item { display: flex; align-items: center; justify-content: space-between; background: var(--surface2); border-radius: 8px; padding: 9px 12px; gap: 8px; }
.stream-item-title { font-size: 0.81rem; display: flex; align-items: center; gap: 6px; color: var(--text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stream-item-title i { color: var(--accent); flex-shrink: 0; }

/* ── NETFLIX-STYLE PLAYER ── */
.nfp {
  position: fixed; inset: 0;
  background: #000; z-index: 3000;
  display: none; overflow: hidden; user-select: none;
}
.nfp.open { display: block; }

.nfp-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

#player-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #000; display: none; outline: none;
}
#player-iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; display: none;
}

.nfp-error {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; color: rgba(255,255,255,.6); padding: 24px;
  position: absolute; inset: 0;
}
.nfp-error.show { display: flex; }
.nfp-error i { font-size: 2.5rem; color: var(--accent); }
.nfp-error p { font-size: 1rem; font-weight: 700; color: #fff; margin: 0; }
.nfp-error small { font-size: .8rem; opacity: .7; }

.nfp-loader {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; position: absolute; inset: 0; z-index: 6;
  background: rgba(0,0,0,.55); color: rgba(255,255,255,.85);
  font-size: .88rem; letter-spacing: .05em; text-transform: uppercase;
}
.nfp-loader.show { display: flex; }
.nfp-spinner {
  width: 46px; height: 46px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: nfp-spin .75s linear infinite;
}
@keyframes nfp-spin { to { transform: rotate(360deg); } }

.nfp-top {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 20px 20px 52px;
  background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, transparent 100%);
  display: flex; align-items: center; gap: 14px; z-index: 10;
  transition: opacity .32s, transform .32s;
}
.nfp-top.nfp-hidden { opacity: 0; pointer-events: none; transform: translateY(-8px); }

.nfp-top-title-wrap { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0; }
.nfp-live-pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #ff3d71;
  animation: pulse 1.5s infinite; flex-shrink: 0;
}
.nfp-top-title { font-size: .95rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nfp-btn {
  background: rgba(255,255,255,.13); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; flex-shrink: 0;
  transition: background .2s, transform .15s; backdrop-filter: blur(6px);
}
.nfp-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.nfp-btn:active { transform: scale(.93); }

.nfp-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 8; pointer-events: none; transition: opacity .3s;
}
.nfp-center.nfp-hidden { opacity: 0; }

.nfp-big-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; color: #fff; cursor: pointer;
  transition: background .2s, transform .22s, opacity .3s;
  pointer-events: auto; box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nfp-big-btn:hover { background: rgba(0,229,255,.22); border-color: var(--accent); transform: scale(1.12); }
.nfp-big-btn.nfp-hidden { opacity: 0; pointer-events: none; transform: scale(.82); }

.nfp-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 52px 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
  z-index: 10; transition: opacity .32s, transform .32s;
}
.nfp-bottom.nfp-hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }

.nfp-progress-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.nfp-progress { flex: 1; height: 3px; background: rgba(255,255,255,.18); border-radius: 2px; overflow: hidden; }
.nfp-prog-fill {
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8f00);
  animation: shimmer 2.5s infinite linear; background-size: 200% 100%;
}
.nfp-live-tag {
  font-size: .62rem; font-weight: 800; color: #ff3d71;
  letter-spacing: 1px; white-space: nowrap; display: flex; align-items: center; gap: 4px;
}
.nfp-live-tag i { font-size: .48rem; }

.nfp-ctrl-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.nfp-ctrl-left, .nfp-ctrl-right { display: flex; align-items: center; gap: 8px; }
.nfp-vol-row { display: flex; align-items: center; gap: 4px; }
.nfp-vol {
  -webkit-appearance: none; width: 82px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.3); outline: none; cursor: pointer;
}
.nfp-vol::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.nfp-qual {
  font-size: .6rem; font-weight: 800; color: var(--primary);
  background: var(--primary-dim); padding: 2px 8px; border-radius: 8px;
  text-transform: uppercase; display: none; letter-spacing: .5px;
}
.nfp-qual.show { display: inline-block; }
.nfp-pip-btn.pip-active { color: var(--accent) !important; background: rgba(0,229,255,.18) !important; }

@media (max-width: 480px) {
  .nfp-vol { width: 52px; }
  .nfp-top { padding: 14px 14px 44px; }
  .nfp-bottom { padding: 44px 14px 18px; }
  .nfp-big-btn { width: 62px; height: 62px; font-size: 1.5rem; }
}

/* ── NEWS READER MODAL ── */
.news-reader-body { padding: 16px; }
.news-reader-body img { border-radius: 8px; }

/* ── FOOTER ── */
footer { padding: 24px 16px; border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 0.78rem; }
footer a { color: var(--primary); }

/* ── LOAD MORE ── */
.load-more-wrap { text-align: center; margin-top: 20px; }
.load-more-btn {
  background: var(--surface); border: 1px solid var(--border); color: var(--primary);
  padding: 10px 26px; border-radius: 10px; font-size: 0.86rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.load-more-btn:hover { background: var(--primary-dim); border-color: rgba(0,229,255,0.3); }

/* ── DESKTOP: center modal vertically ── */
@media (min-width: 640px) {
  .modal-bg { align-items: center; padding: 16px; }
  .modal { border-radius: 16px; }
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

/* ── MOBILE ── */
@media (max-width: 639px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 36px 14px 24px; }
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: .85rem; }
  .hero-stats { gap: 8px; }
  .stat-pill { padding: 6px 13px; font-size: 0.8rem; gap: 6px; }
  .stat-pill b { font-size: .95rem; }

  .page-header h1 { font-size: 1.2rem; }
  .page-header p { font-size: .8rem; }

  .matches-grid { grid-template-columns: 1fr; gap: 10px; }
  .news-grid { grid-template-columns: 1fr; gap: 10px; }

  .section-hdr { flex-direction: column; align-items: flex-start; gap: 8px; }

  .modal-info { grid-template-columns: 1fr; }
  .modal-score-block { gap: 8px; padding: 12px; }
  .modal-score-num { font-size: 1.8rem; }
  .modal-team-name { font-size: .8rem; }

  .stream-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stream-item .watch-btn { width: 100%; justify-content: center; }

  .score { font-size: 1.35rem; }
  .team-logo, .team-logo-placeholder { width: 34px; height: 34px; }

}

