/* ===== PERSIANA SPORTS - PUBLIC SITE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand: #0D9999;
  --brand-bright: #16AEAE;
  --brand-light: #4DC4C4;
  --brand-dark: #0A7A7A;
  --brand-deep: #074D4D;
  --brand-glow: rgba(13, 153, 153, 0.4);

  --ch1: #1AA1E5; --ch2: #10A858; --ch3: #D9214B; --ch4: #E88B85;

  --bg-pure: #04090A;
  --bg-deep: #060C0E;
  --bg-panel: #0B1518;
  --bg-elev: #131F22;
  --bg-hover: #1A282C;

  --border: #182428;
  --border-light: #1F2D32;
  --border-bright: #2A3D44;

  --text: #ffffff;
  --text-2: #c4d0d2;
  --text-3: #7d8b8f;
  --text-4: #4d5a5f;

  --green: #00D97E;
  --red: #FF3860;

  --serif: 'Newsreader', 'Vazirmatn', serif;
  --fa: 'Vazirmatn', sans-serif;
}

html { scroll-behavior: smooth; font-size: 14px; }

body {
  font-family: var(--fa);
  background: var(--bg-pure);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand); color: white; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  text-align: center;
  padding: 30px;
  color: var(--text-3);
  font-size: 13px;
}

.empty-msg {
  text-align: center;
  padding: 30px;
  color: var(--text-3);
  font-size: 13px;
}

/* ====== HEADER ====== */
.header {
  background: var(--bg-pure);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-meta {
  font-size: 12px;
  color: var(--text-3);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.logo-mark { width: 50px; height: 50px; flex-shrink: 0; transition: transform 0.3s; }
.logo-block:hover .logo-mark { transform: scale(1.05); }

.logo-text-block { display: flex; flex-direction: column; line-height: 1; }

.logo-en {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: white;
}

.logo-en .accent { color: var(--brand); }

.logo-fa {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 4px;
  margin-top: 4px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  position: relative;
}

.h-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-2);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  transition: all 0.15s;
}

.h-btn:hover { border-color: var(--brand); color: var(--brand); }

.h-btn.primary {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.h-btn.primary:hover { background: var(--brand-bright); border-color: var(--brand-bright); color: white; }

.user-menu { position: relative; }

.user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--bg-deep);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  min-width: 160px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 200;
}

.user-dropdown.show { display: block; }

.user-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.user-dropdown a:last-child { border-bottom: none; }
.user-dropdown a:hover { background: var(--bg-panel); color: var(--brand); }
.user-dropdown a.danger:hover { color: var(--red); }

.header-nav {
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 48px;
  overflow-x: auto;
}

.nav-link {
  color: var(--text-2);
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-link:hover { color: var(--brand); }

.nav-link.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 700;
}

.nav-link .badge {
  background: var(--red);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  margin-right: 5px;
}

/* ====== CHANNELS STRIP ====== */
.channels-strip {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.channels-strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.channel-tile {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.channel-tile::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 3px;
  background: var(--ch-color);
  transition: width 0.2s;
}

.channel-tile:hover { background: var(--bg-elev); border-color: var(--ch-color); }
.channel-tile:hover::before { width: 6px; }

.channel-tile-logo { width: 42px; height: 42px; flex-shrink: 0; }
.channel-tile-info { flex: 1; line-height: 1.3; min-width: 0; }
.channel-tile-name { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
.channel-tile-show { font-size: 11px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.channel-tile-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ch-color);
  padding: 3px 8px;
  background: var(--bg-deep);
  border-radius: 4px;
}

.channel-tile-status.live {
  color: var(--red);
  background: rgba(255,56,96,0.1);
}

.channel-tile-status.live::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* ====== MAIN ====== */
.main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

/* ====== HERO ====== */
.hero {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

.hero-broadcast {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: black;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(13,153,153,0.15);
}

.hero-broadcast img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1) blur(2px);
}

.hero-broadcast::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}

.hero-on-air {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.on-air-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.hero-channel {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  color: white;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-channel-logo { width: 24px; height: 24px; }

.sub-gate {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.sub-gate-lock {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px var(--brand-glow);
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%,100% { box-shadow: 0 8px 30px var(--brand-glow); }
  50% { box-shadow: 0 8px 50px var(--brand-glow), 0 0 0 12px rgba(13,153,153,0.1); }
}

.sub-gate-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.sub-gate-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 22px;
  max-width: 400px;
  line-height: 1.6;
}

.sub-gate-actions { display: flex; gap: 10px; }

.sub-gate-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--fa);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.sub-gate-btn:hover { background: var(--brand-bright); transform: translateY(-2px); }

.sub-gate-btn.secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.sub-gate-btn.secondary:hover { background: rgba(255,255,255,0.2); }

.hero-broadcast-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
}

.hero-broadcast-show {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-broadcast-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 8px;
}

.hero-broadcast-meta {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

/* ====== TOP STORIES ====== */
.hero-stories { display: flex; flex-direction: column; gap: 18px; }

.top-story {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  cursor: pointer;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.15s;
}

.top-story:last-child { border-bottom: none; padding-bottom: 0; }
.top-story:hover { opacity: 0.85; }

.top-story-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-panel);
}

.top-story-img img { width: 100%; height: 100%; object-fit: cover; }

.top-story-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.top-story-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.top-story:hover .top-story-title { color: var(--brand); }

.top-story-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--text-3);
}

/* ====== SECTION HEADERS ====== */
.section-h {
  border-top: 3px solid var(--brand);
  padding: 16px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-h-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.section-h-meta {
  font-size: 12px;
  color: var(--text-3);
}

.section-h-meta a { color: var(--brand); font-weight: 600; }

/* ====== SCHEDULE ====== */
.schedule-container {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}

.schedule-tab {
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.schedule-tab:last-child { border-left: none; }
.schedule-tab svg { width: 24px; height: 24px; }
.schedule-tab:hover { color: white; background: var(--bg-deep); }

.schedule-tab.active {
  color: white;
  background: var(--bg-deep);
  border-bottom-color: var(--ch-color);
}

.schedule-day-bar {
  padding: 14px 20px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.schedule-program {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
}

.schedule-program:last-child { border-bottom: none; }
.schedule-program:hover { background: var(--bg-panel); }

.schedule-program.now {
  background: linear-gradient(90deg, rgba(255,56,96,0.08) 0%, transparent 100%);
}

.schedule-program.now::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}

.schedule-program.past { opacity: 0.5; }

.program-time {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.program-time .duration {
  display: block;
  font-size: 10px;
  color: var(--text-4);
  font-weight: 500;
  margin-top: 4px;
  font-family: var(--fa);
}

.program-info { line-height: 1.4; }

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-elev);
  color: var(--ch-color);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 6px;
}

.program-tag.live { background: var(--red); color: white; }
.program-tag.live::before {
  content: '';
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.program-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.program-desc {
  font-size: 12px;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-action {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.program-watch-btn {
  background: var(--ch-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--fa);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-watch-btn.locked {
  background: var(--bg-elev);
  color: var(--text-2);
  border: 1px solid var(--border-light);
}

.program-watch-btn.locked:hover { border-color: var(--brand); color: var(--brand); }

.program-watch-btn.replay {
  background: transparent;
  color: var(--text-3);
  border: 1px solid var(--border-light);
}

.program-status-tag {
  font-size: 10px;
  color: var(--text-4);
  font-weight: 600;
}

/* ====== MATCHES ====== */
.matches-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.match-data {
  background: var(--bg-deep);
  padding: 18px;
  cursor: pointer;
}

.match-data:hover { background: var(--bg-panel); }

.match-data-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.match-data-league {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}

.match-data-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
}

.match-data-status.live { color: var(--red); }
.match-data-status.upcoming { color: var(--brand); }

.match-data-status.live::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.match-data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 0;
  gap: 12px;
}

.match-data-row + .match-data-row { border-top: 1px dashed var(--border); }

.team-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.team-line .dot { width: 8px; height: 8px; border-radius: 1px; flex-shrink: 0; }
.team-line.winner { color: white; }
.team-line.winner::after { content: '◀'; color: var(--green); font-size: 8px; margin-right: 4px; }
.team-line.loser { color: var(--text-3); }

.match-data-score { font-size: 22px; font-weight: 800; }
.match-data-score.winner { color: white; }
.match-data-score.loser { color: var(--text-3); }

.watch-link-locked {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-panel);
  border-radius: 4px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.watch-link-locked:hover { border-color: var(--ch-color); color: var(--ch-color); }

.lock-tag {
  background: var(--brand);
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 800;
}

/* ====== SIDEBAR ====== */
.sidebar {
  border-right: 1px solid var(--border);
  padding-right: 24px;
}

.sidebar-section { margin-bottom: 32px; }

.sidebar-h {
  font-size: 11px;
  color: white;
  letter-spacing: 2px;
  font-weight: 800;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 10px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.most-read-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.most-read-item:last-child { border-bottom: none; }

.mr-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  font-style: italic;
}

.mr-cat {
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.mr-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.most-read-item:hover .mr-title { color: var(--brand); }

.mr-meta { font-size: 10px; color: var(--text-4); }

/* ====== AUTH MODAL ====== */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-modal-overlay.show { display: flex; }

.auth-modal {
  background: var(--bg-deep);
  border: 1px solid var(--brand);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(13,153,153,0.3);
}

.auth-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: transparent;
  border: none;
  color: var(--text-3);
  font-size: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.auth-modal-close:hover { background: var(--bg-panel); color: white; }

.auth-tabs {
  display: flex;
  background: var(--bg-panel);
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 22px;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: var(--text-3);
  font-family: var(--fa);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
}

.auth-tab.active { background: var(--brand); color: white; }

.auth-form-group { margin-bottom: 14px; }

.auth-form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 6px;
  font-weight: 600;
}

.auth-form-group input {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  color: white;
  padding: 11px 14px;
  font-family: var(--fa);
  font-size: 13px;
  border-radius: 6px;
}

.auth-form-group input:focus { outline: none; border-color: var(--brand); }

.auth-error {
  background: rgba(255,56,96,0.1);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 12px;
}

.auth-submit {
  width: 100%;
  background: var(--brand);
  color: white;
  border: none;
  padding: 13px;
  font-family: var(--fa);
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
}

.auth-submit:hover:not(:disabled) { background: var(--brand-bright); }
.auth-submit:disabled { opacity: 0.6; }

.auth-features {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.auth-feature {
  font-size: 12px;
  color: var(--text-2);
  padding: 4px 0;
}

.auth-foot {
  text-align: center;
  color: var(--text-3);
  font-size: 11px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--bg-deep);
  border-top: 3px solid var(--brand);
  padding: 48px 24px 24px;
  margin-top: 48px;
}

.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-col h5 {
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-col a, .footer-col p {
  color: var(--text-3);
  font-size: 13px;
  line-height: 2;
  display: block;
}

.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  max-width: 1600px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-4);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
  .channels-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .main { grid-template-columns: 1fr; }
  .sidebar { border-right: none; padding-right: 0; border-top: 1px solid var(--border); padding-top: 24px; }
  .matches-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { grid-template-columns: 1fr; gap: 14px; }
  .header-meta { display: none; }
  .header-actions { justify-content: center; }
  .channels-strip-inner { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .matches-row { grid-template-columns: 1fr; }
  .schedule-tabs { grid-template-columns: 1fr 1fr; }
  .schedule-program { grid-template-columns: 70px 1fr; }
  .program-action { grid-column: 1/-1; flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-broadcast-title { font-size: 20px; }
  .sub-gate-title { font-size: 22px; }
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-pure); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }
