/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1600&q=80') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 2;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.93) 0%, rgba(120,0,0,0.6) 60%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.breadcrumb {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 20px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  font-weight: 600;
}
.breadcrumb a { color: #bbb; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .fa-chevron-right { font-size: 0.55rem; color: var(--red); }
.page-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 20%, #ff8888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(229,0,0,0.35));
}
.breadcrumb-label span {
  display: inline-block;
  padding: 7px 24px;
  border: 1.5px solid rgba(229,0,0,0.5);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(229,0,0,0.07);
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(90deg, #0b0b0b, #111 50%, #0b0b0b);
  border-bottom: 1px solid #181818;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 48px;
  position: relative;
  flex: 1;
  justify-content: center;
  transition: background 0.3s;
  cursor: default;
}
.stat-item:hover { background: rgba(229,0,0,0.03); }
.stat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--red), #900000);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(229,0,0,0.28);
  flex-shrink: 0;
}
.stat-icon-wrap i { font-size: 1.2rem; color: #fff; }
.stat-item div {
  display: flex;
  flex-direction: column;
}
.stat-item strong {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.stat-item span {
  font-size: 0.68rem;
  color: #666;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #222, transparent);
  align-self: stretch;
}

/* ============ CHANNELS PAGE WRAPPER ============ */
.channels-page {
  background: #070707;
  padding: 50px 50px 90px;
  min-height: 80vh;
}
.channels-page-header {
  text-align: center;
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid #111;
  position: relative;
}
.channels-page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--red);
}
.channels-page-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.channels-page-header p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
}
.channels-page-header p strong { color: #cc2200; }

/* ============ LAYOUT ============ */
.channels-layout {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 22px;
  align-items: start;
}

/* ============ SIDEBAR ============ */
.channels-sidebar {
  background: #0c0c0c;
  border: 1px solid #181818;
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 80px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.sidebar-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, #1c0000, #0e0e0e);
  border-bottom: 1px solid #2a0000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
}
.sidebar-header i { font-size: 0.85rem; }
.sidebar-region { border-bottom: 1px solid #131313; }
.sidebar-region:last-child { border-bottom: none; }
.region-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #777;
  padding: 12px 14px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.region-btn:hover { background: #111; color: #eee; }
.region-btn.open {
  color: #fff;
  background: linear-gradient(90deg, rgba(229,0,0,0.1), transparent);
  border-left: 3px solid var(--red);
  padding-left: 11px;
}
.region-btn .minus,
.region-btn .plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.2s;
}
.region-btn .plus { background: #1c1c1c; color: #555; }
.region-sub {
  display: none;
  flex-direction: column;
  background: #080808;
  border-top: 1px solid #131313;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #400000 #0a0a0a;
}
.region-sub.open { display: flex; }
.region-sub::-webkit-scrollbar { width: 3px; }
.region-sub::-webkit-scrollbar-track { background: #0a0a0a; }
.region-sub::-webkit-scrollbar-thumb { background: #500000; border-radius: 999px; }
.sub-country {
  padding: 9px 14px 9px 26px;
  font-size: 0.76rem;
  color: #555;
  border-bottom: 1px solid #0e0e0e;
  transition: all 0.18s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
}
.sub-country:last-child { border-bottom: none; }
.sub-country:hover { background: #0f0f0f; color: #ccc; padding-left: 32px; }
.sub-country.selected {
  color: #fff;
  background: linear-gradient(90deg, rgba(229,0,0,0.13), transparent);
  border-left: 3px solid var(--red);
  padding-left: 23px;
  font-weight: 700;
}

/* ============ CHANNELS MAIN ============ */
.channels-main { min-height: 500px; }

/* Country header */
.country-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #0d0d0d, #131313);
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.country-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), #800000);
}
.country-header::after {
  content: '';
  position: absolute;
  top: -50px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(229,0,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.country-flag-big {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.country-header-text h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.country-header-text p {
  font-size: 0.68rem;
  color: #444;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.channel-count-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--red), #900000);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(229,0,0,0.3);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Category groups */
.category-group { margin-bottom: 36px; }
.category-label {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-label i {
  color: var(--red);
  font-size: 0.75rem;
}
.category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #181818, transparent);
}

/* Channel grid */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}
.channel-card {
  background: #0c0c0c;
  border: 1px solid #181818;
  border-radius: 10px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.77rem;
  color: #888;
  font-weight: 600;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}
.channel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,0,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s;
}
.channel-card:hover {
  border-color: rgba(229,0,0,0.35);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 1px rgba(229,0,0,0.12);
}
.channel-card:hover::after { opacity: 1; }
.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.channel-card:nth-child(5n+1) .channel-icon { background: linear-gradient(135deg, #e50000, #900000); }
.channel-card:nth-child(5n+2) .channel-icon { background: linear-gradient(135deg, #0055dd, #003299); }
.channel-card:nth-child(5n+3) .channel-icon { background: linear-gradient(135deg, #009944, #005522); }
.channel-card:nth-child(5n+4) .channel-icon { background: linear-gradient(135deg, #9900cc, #550077); }
.channel-card:nth-child(5n+5) .channel-icon { background: linear-gradient(135deg, #dd6600, #993300); }

.channel-info { position: relative; z-index: 1; min-width: 0; }
.channel-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.channel-qual {
  display: inline-block;
  font-size: 0.57rem;
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.qual-sd  { background: #161616; color: #444; border: 1px solid #222; }
.qual-hd  { background: rgba(0,55,150,0.18); color: #4488ff; border: 1px solid rgba(0,70,190,0.25); }
.qual-fhd { background: rgba(0,110,45,0.18); color: #22cc55; border: 1px solid rgba(0,140,55,0.25); }
.qual-uhd { background: rgba(120,0,190,0.18); color: #bb33ff; border: 1px solid rgba(140,0,220,0.25); }
.qual-aac { background: rgba(160,90,0,0.18); color: #ff9922; border: 1px solid rgba(190,110,0,0.25); }

/* ============ PREMIUM TV SECTION ============ */
.premium-section {
  margin-bottom: 38px;
  background: linear-gradient(135deg, #08070f, #0d0a18, #0a0a0a);
  border: 1px solid rgba(180,130,255,0.2);
  border-radius: 14px;
  padding: 20px 22px 22px;
  position: relative;
  overflow: hidden;
}
.premium-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9900cc, #ffcc00, #9900cc, transparent);
  animation: prem-shimmer 3s ease-in-out infinite;
}
.premium-section::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(140,0,200,0.07) 0%, transparent 65%);
  pointer-events: none;
}
@keyframes prem-shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.premium-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.premium-icon {
  font-size: 1.15rem;
  color: #ffcc00;
  filter: drop-shadow(0 0 6px rgba(255,200,0,0.6));
  line-height: 1;
}
.premium-header > span:nth-child(2) {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}
.premium-sub {
  font-size: 0.62rem !important;
  color: #555 !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
}
.premium-badge {
  margin-left: auto;
  font-size: 0.58rem !important;
  padding: 3px 10px;
  background: linear-gradient(135deg, #6600aa, #330055);
  border: 1px solid rgba(150,0,220,0.4);
  border-radius: 50px;
  color: #cc88ff !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}
.premium-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.premium-card {
  background: rgba(100,0,160,0.07) !important;
  border-color: rgba(140,0,200,0.18) !important;
  position: relative;
}
.premium-card:hover {
  border-color: rgba(180,80,255,0.5) !important;
  box-shadow: 0 10px 32px rgba(120,0,200,0.2), 0 0 0 1px rgba(160,50,255,0.18) !important;
}
.premium-crown {
  position: absolute;
  top: 6px; right: 8px;
  font-size: 0.7rem;
  line-height: 1;
}
.premium-crown-uhd { color: #ffcc00; filter: drop-shadow(0 0 5px rgba(255,200,0,0.7)); }
.premium-crown-fhd { color: #bb33ff; filter: drop-shadow(0 0 4px rgba(160,0,255,0.5)); }

/* ============ TRENDING SECTION ============ */
.trending-section {
  margin-bottom: 38px;
  background: linear-gradient(135deg, #0f0500, #120000, #0a0a0a);
  border: 1px solid rgba(229,0,0,0.22);
  border-radius: 14px;
  padding: 20px 22px 22px;
  position: relative;
  overflow: hidden;
}
.trending-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), #ff6600, var(--red), transparent);
  animation: trend-pulse 2.5s ease-in-out infinite;
}
@keyframes trend-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.trending-header {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.trending-fire { font-size: 1.1rem; }
.trending-live-dot {
  width: 7px; height: 7px;
  background: #e50000;
  border-radius: 50%;
  animation: blink-dot 1.1s ease-in-out infinite;
  margin-left: 6px;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #e50000; }
  50%       { opacity: 0.3; box-shadow: none; }
}
.trending-live-text {
  font-size: 0.58rem;
  padding: 2px 7px;
  background: var(--red);
  border-radius: 4px;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 900;
}

/* Trending grid uses wider cards */
.trending-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.trending-card {
  background: rgba(229,0,0,0.04) !important;
  border-color: rgba(229,0,0,0.14) !important;
  position: relative;
}
.trending-card:hover {
  border-color: rgba(229,0,0,0.5) !important;
  box-shadow: 0 12px 32px rgba(229,0,0,0.2), 0 0 0 1px rgba(229,0,0,0.18) !important;
}
.trending-rank {
  position: absolute;
  top: 6px; right: 8px;
  font-size: 0.58rem;
  font-weight: 900;
  color: rgba(229,0,0,0.5);
  letter-spacing: 0.5px;
}
.trending-hot {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.trending-card:hover .trending-hot { opacity: 1; }

/* ============ MORE TEASER ============ */
.more-teaser {
  margin-top: 44px;
  border-radius: 16px;
  border: 1px solid rgba(229,0,0,0.2);
  background: linear-gradient(135deg, #0d0000, #111 60%, #0a0a0a);
  position: relative;
  overflow: hidden;
}
.more-teaser-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(229,0,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.more-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: trend-pulse 2.5s ease-in-out infinite;
}
.more-teaser::after {
  content: '+ + + + + + + + + + + + + + + + + +';
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 6px;
  color: rgba(229,0,0,0.08);
  pointer-events: none;
  font-weight: 900;
}
.more-teaser-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.more-teaser-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #7a0000);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(229,0,0,0.3);
}
.more-teaser-icon i { font-size: 1.3rem; color: #fff; }
.more-teaser-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}
.more-teaser-text strong {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3px;
}
.more-teaser-text span {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.6;
}
.more-teaser-text em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}
.more-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--red), #900000);
  color: #fff;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(229,0,0,0.3);
  transition: all 0.2s;
  flex-shrink: 0;
}
.more-teaser-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229,0,0,0.45);
  background: linear-gradient(135deg, #ff1a1a, var(--red));
}
.more-teaser-cta i { font-size: 0.7rem; transition: transform 0.2s; }
.more-teaser-cta:hover i { transform: translateX(4px); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(90deg, #900000, var(--red), #900000);
  background-size: 200% 100%;
  animation: cta-shimmer 3s linear infinite;
  text-align: center;
  padding: 20px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
@keyframes cta-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .channels-page { padding: 30px 32px 60px; }
  .sidebar-header { font-size: 0.85rem; padding: 12px 14px; }
  .channel-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (max-width: 1000px) {
  .channels-page { padding: 25px 24px 50px; }
  .channels-layout { grid-template-columns: 1fr; }
  .channels-sidebar { position: static; margin-bottom: 30px; }
  .channel-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-item { padding: 16px 20px; }
}
@media (max-width: 800px) {
  .stat-item { padding: 14px 16px; flex: 0 0 40%; font-size: 0.85rem; }
  .stat-divider { display: none; }
  .stat-text { font-size: 0.75rem; }
  .channel-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sidebar { max-width: 100%; }
}
@media (max-width: 700px) {
  .stats-bar { padding-top: 60px; padding: 12px 0; }
  .stat-item { padding: 12px 14px; flex: 0 0 33%; justify-content: center; }
  .stat-icon-wrap { font-size: 0.8rem; }
  .stat-text { display: none; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .country-header { font-size: 0.9rem; padding: 12px; }
  .channel-count-badge { font-size: 0.7rem; }
  .trending-card, .premium-card { padding: 10px 12px; }
  .channel-title { font-size: 0.75rem; }
  .qual-badge { font-size: 0.6rem; padding: 2px 6px; }
}
@media (max-width: 600px) {
  .stats-bar { flex-wrap: nowrap; overflow-x: auto; }
  .stat-item { padding: 10px 12px; flex: 0 0 auto; min-width: 80px; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trending-section, .premium-section { margin: 12px 0; }
  .trending-card { padding: 8px 10px; }
  .more-teaser { margin: 16px 0; }
}
@media (max-width: 480px) {
  .stat-item { min-width: 70px; padding: 8px 10px; font-size: 0.75rem; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .qual-badge { font-size: 0.55rem; padding: 1px 4px; }
  .channel-title { font-size: 0.65rem; }
}
