/* ==========================================================================
   STREAMEAST PRO - WHITE & RED THEME (NO BORDERS, NO SHADOWS)
   All match cards directly in HTML, centered, only teams, no VS background.
   ========================================================================== */

:root {
  --bg-page: #f2f3f7;
  --bg-header: #cc0000;
  --bg-card: #ffffff;
  --bg-card-hover: #f9f9fb;
  --bg-input: #ffffff;
  --bg-tag: #f4f5f8;

  --red-primary: #cc0000;
  --red-hover: #b30000;
  --red-soft: #fee2e2;

  --discord-solid: #5865f2;
  --telegram-solid: #229ed9;
  --status-green: #10b981;

  --text-dark: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-white: #ffffff;

  --max-width: 1360px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-full: 9999px;

  --transition: 0.15s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none !important;
  /* NO BORDERS ANYWHERE! */
  box-shadow: none !important;
  /* NO SHADOWS ANYWHERE! */
  outline: none;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==========================================================================
   HEADER (Solid Red, NOT STICKY, Direct visible on mobile without scroll)
   ========================================================================== */

.main-header,
.page-header {
  background-color: var(--bg-header);
  position: relative !important;
  /* NOT STICKY AS REQUESTED */
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link,
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  background-color: #ffffff;
  color: var(--red-primary);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.brand-pill {
  background-color: #ffffff;
  color: var(--red-primary);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.logo-red-box {
  background-color: #ffffff;
  color: var(--red-primary);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.6px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.logo-text .text-red {
  color: #ffcccc;
}

/* Navigation tabs (Direct show, no horizontal scroll) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  /* DIRECT SHOW, NO SCROLL */
}

.nav-tab {
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-tab:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.nav-tab.active {
  background-color: #ffffff;
  color: var(--red-primary);
}

/* ==========================================================================
   PAGE CONTAINER
   ========================================================================== */

.page-container {
  max-width: var(--max-width);
  margin: 20px auto 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  align-items: start;
}

.left-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Banner Box (No border, No shadow) */
.banner-box {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.banner-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.banner-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.banner-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Search Toolbar (Full Width, No border, No shadow) */
.toolbar-section {
  width: 100%;
  display: flex;
}

.search-input-wrap {
  position: relative;
  width: 100%;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-input-wrap input {
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 12px 38px 12px 40px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: inherit;
}

.clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  display: none;
}

.clear-btn:hover {
  color: var(--text-dark);
}

.filter-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background-color: #ffffff;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.filter-pill {
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.filter-pill:hover {
  color: var(--red-primary);
}

.filter-pill.active {
  background-color: var(--red-primary);
  color: #ffffff;
}

.red-bullet {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* ==========================================================================
   CENTERED MATCH CARDS (NO BORDERS, NO SHADOWS, NO VS BG, ONLY TEAMS)
   ========================================================================== */

.matches-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.match-item-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center */
  text-align: center;
  /* Center */
  gap: 8px;
}

.match-item-card:hover {
  background-color: #f7f7fa;
  transform: translateY(-1px);
}

/* 1. Top League (Centered) */
.match-center-league {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.match-center-league i {
  color: var(--red-primary);
}

.league-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

/* 2. Middle Teams (Only Teams, NO crests, NO VS background) */
.match-center-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 2px 0;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

/* NO BACKGROUND on VS! Just clean text */
.vs-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--red-primary);
  background: transparent !important;
  padding: 0 4px;
  letter-spacing: 1px;
}

/* 3. Bottom Date and Time (Centered) */
.match-center-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.live-pill-red {
  color: var(--red-primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.live-pill-red .red-bullet {
  background-color: var(--red-primary);
}

/* ==========================================================================
   SIDEBAR (No borders, No shadows)
   ========================================================================== */

.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.simple-comm-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none;
  background-color: #ffffff;
  transition: var(--transition);
}

.simple-comm-box:hover {
  background-color: #fafafc;
  transform: translateY(-1px);
}

.simple-box-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.simple-box-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
}

.simple-discord-box .simple-box-logo {
  background-color: var(--discord-solid);
}

.simple-telegram-box .simple-box-logo {
  background-color: var(--telegram-solid);
}

.simple-box-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-dark);
}

.simple-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--status-green);
}

.dot-blue {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--telegram-solid);
}

.simple-box-action {
  color: var(--red-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.timezone-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px;
}

/* ONE BOX UNDER TELEGRAM CONTAINING BOTH ADS (Solid White, Zero borders, Zero shadows) */
.sidebar-ads-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: 100%;
}

.sidebar-ads-card .ad-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ad-item-box {
  width: 300px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8fafc;
  border-radius: 4px;
}

.tz-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tz-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red-primary);
  border-radius: 50%;
}

.tz-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tz-time-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.tz-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.tz-note i {
  font-size: 0.95rem;
  color: var(--red-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
}

.empty-icon {
  font-size: 2.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.empty-state h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.empty-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.btn-reset {
  background-color: var(--red-primary);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.modal-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f9;
}

.modal-match-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-tag-live {
  background-color: var(--red-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.modal-match-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.modal-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-close {
  background: #eaeaea;
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close:hover {
  background-color: var(--red-primary);
  color: #fff;
}

.mock-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #06080d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.spinner-ring {
  width: 40px;
  height: 40px;
  border: 4px solid #1c2333;
  border-top-color: var(--red-primary);
  border-radius: 50%;
  animation: spinRing 0.8s linear infinite;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.player-loading-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.player-quality-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  background-color: #141926;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.player-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 13, 20, 0.95);
  padding: 8px 16px;
}

.bar-progress {
  width: 100%;
  height: 3px;
  background-color: #1e2638;
  margin-bottom: 8px;
}

.bar-fill {
  width: 100%;
  height: 100%;
  background-color: var(--red-primary);
}

.bar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ctrl-group-left,
.ctrl-group-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-btn {
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.p-live-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #f87171;
  font-weight: 700;
}

.mirror-selector-bar {
  padding: 16px 20px;
  background-color: #f8fafc;
}

.mirror-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mirror-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.m-pill {
  background-color: #ffffff;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.m-pill:hover {
  background-color: #fee2e2;
  color: var(--red-primary);
}

.m-pill.active {
  background-color: var(--red-primary);
  color: #fff;
}

.page-footer {
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: #ffffff;
}

/* ==========================================================================
   ARTICLE CONTAINER & FAQS (NO BORDERS, NO SHADOWS)
   ========================================================================== */

.article-container {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.article-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  line-height: 1.3;
}

.article-lead {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.article-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.article-section p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.article-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.article-feature-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.article-feature-list li::before {
  content: '•';
  color: var(--red-primary);
  font-weight: 800;
  font-size: 1.2rem;
  position: absolute;
  left: 4px;
  top: -2px;
}

/* FAQ Accordion */
.article-faqs-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.article-faqs-section h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.faq-subtext {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: -6px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.faq-item {
  background-color: #f7f8fb;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: transparent;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--red-primary);
  background-color: #f1f2f6;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--red-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
  padding: 0 18px 14px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   LINKS.HTML - MATCH DETAILS & STREAMER LINKS (NO BORDERS, NO SHADOWS)
   ========================================================================== */

.stream-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-back-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.btn-back-schedule:hover {
  background-color: var(--red-primary);
  color: #ffffff;
}

.stream-status-chip {
  background-color: #ffffff;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stream-status-chip.active-live {
  background-color: #fee2e2;
  color: var(--red-primary);
}

.match-details-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.stream-meta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.stream-meta-pill {
  background-color: #f1f5f9;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.video-player-container {
  background-color: #06080d;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.player-main-view {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.streamer-links-section {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.streamer-links-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.streamer-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.streamer-section-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STREAM LINK BARS (WHITE COLOR, NO BLUR, NO DARK BG, #1 #2 #3)
   ========================================================================== */

.stream-links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream-link-bar {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  user-select: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}

.stream-link-bar:hover {
  background-color: #fafafc;
  transform: translateY(-1px);
}

.stream-link-bar:active {
  transform: translateY(0);
}

/* Number Tag replacing votes: #1, #2, #3 */
.stream-num-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--red-primary);
  background-color: #fee2e2;
  min-width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Middle Info Cluster */
.stream-info-cluster {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.stream-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stream-out-icon {
  color: var(--text-muted);
  font-size: 15px;
}

.stream-source-name {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1rem;
  letter-spacing: -0.2px;
}

.stream-channel-name {
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* Bottom Tags Row */
.stream-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.stream-pill-tag {
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
}

.stream-platform-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  color: var(--text-muted);
  font-size: 14px;
}

.stream-platform-icons i:hover {
  color: var(--red-primary);
}

/* Action Play button */
.stream-play-action {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--red-primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.stream-link-bar:hover .stream-play-action {
  background-color: var(--red-hover);
}

/* Flag button */
.stream-flag-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.stream-flag-btn:hover {
  color: var(--red-primary);
}

.stream-flag-btn.reported {
  color: var(--status-green);
}

/* Active Stream Link Bar */
.stream-link-bar.active {
  background-color: #fef2f2 !important;
  border-left: 4px solid var(--red-primary) !important;
}

.stream-link-bar.active .stream-play-action {
  background-color: #059669;
  /* Green Playing indicator */
}

/* ==========================================================================
   ADVERTISING SLOTS (RESPONSIVE, NO BORDERS, NO SHADOWS, NO BLUR)
   ========================================================================== */

.ad-slot-box {
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: none !important;
  border: none !important;
}

.ad-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ad-banner-placeholder {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background-color: #f8fafc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.ad-banner-placeholder:hover {
  background-color: #f1f5f9;
  color: var(--red-primary);
}

.ad-banner-placeholder i {
  font-size: 1.15rem;
  color: var(--red-primary);
}

/* Big Video Player */
.big-video-player-box {
  width: 100%;
  background-color: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none !important;
  border: none !important;
}

.big-video-player-box .embed-player-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background-color: #000000;
}

.big-video-player-box .embed-player-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   STATIC LEGAL & CONTACT PAGES (CONTACT, DMCA, PRIVACY)
   ========================================================================== */

.content-page-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.65;
  color: var(--text-dark);
  box-shadow: none !important;
  border: none !important;
}

.content-page-header {
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 16px;
}

.content-page-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.content-page-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.content-page-card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 14px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.content-page-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 10px;
}

.content-page-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.content-page-card ul {
  padding-left: 20px;
  margin: 6px 0;
}

.content-page-card li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.highlight-box-red {
  background-color: #fef2f2;
  border-left: 4px solid var(--red-primary);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #991b1b;
  font-weight: 600;
}

/* Contact Form Grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

/* Minimal Centered Page Layout (No Sidebar) */
.single-center-container {
  max-width: 900px;
  margin: 30px auto 60px auto;
  padding: 0 20px;
}

.contact-card-minimal {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 50px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: none !important;
  border: none !important;
}

.contact-card-minimal h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.contact-card-minimal p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fef2f2;
  color: var(--red-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: 12px;
  transition: var(--transition);
}

.contact-email-link:hover {
  background-color: var(--red-primary);
  color: #ffffff;
}

.form-group-full {
  grid-column: span 2;
}

.form-input-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-field-input,
.form-field-textarea {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-field-input:focus,
.form-field-textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--red-primary);
}

.form-field-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-contact {
  background-color: var(--red-primary);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-submit-contact:hover {
  background-color: var(--red-hover);
}

/* Footer Links */
.page-footer {
  background-color: #ffffff;
  margin-top: 40px;
  padding: 30px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links-row a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.15s ease;
}

.footer-links-row a:hover {
  color: var(--red-primary);
}

.footer-inner p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .page-container {
    grid-template-columns: 1fr;
  }

  .right-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {

  /* Header Mobile: Direct show, no scroll */
  .header-inner {
    padding: 10px 14px;
    height: auto !important;
    min-height: auto !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header-nav {
    display: flex;
    flex-wrap: wrap;
    /* Direct show, no horizontal scrolling */
    justify-content: center;
    overflow-x: visible !important;
    gap: 4px;
    width: 100%;
  }

  .nav-tab {
    padding: 5px 9px;
    font-size: 0.74rem;
    gap: 4px;
  }

  .page-container {
    padding: 0 16px;
    margin-top: 14px;
  }

  .right-sidebar {
    grid-template-columns: 1fr;
  }

  .stream-link-bar {
    padding: 14px 16px;
  }

  .ad-banner-placeholder {
    height: 65px;
    font-size: 0.74rem;
  }

  .content-page-card {
    padding: 22px 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .stream-link-bar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
  }

  .stream-play-action {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }

  .ad-banner-placeholder {
    height: 52px;
    font-size: 0.68rem;
    gap: 6px;
  }
}

/* ==========================================================================
   728x90 ADS (ARTICLE CONTAINER & FIXED FOOTER BAR)
   ========================================================================== */

.article-ad-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 10px;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.article-ad-card .ad-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ad-banner-inner-728 {
  width: 100%;
  max-width: 728px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8fafc;
  border-radius: 4px;
}

/* Fixed Sticky Bottom Ad Overlay (Matching Screenshot: Light BG, Centered Ad, Red Close Button on Right) */
.fixed-bottom-ad-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 8px 16px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08) !important;
  border-top: 1px solid #e5e7eb !important;
}

.fixed-ad-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 728px;
}

/* Red Circular Close Button on Far Right (Exactly like screenshot) */
.fixed-ad-close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e50914;
  /* Solid Red */
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.15s ease, background-color 0.15s ease;
  z-index: 1000000;
}

.fixed-ad-close-btn:hover {
  background-color: #b30000;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .fixed-bottom-ad-bar {
    padding: 6px 40px 6px 10px;
  }

  .ad-banner-inner-728 {
    overflow-x: auto;
    max-width: 100%;
  }

  .fixed-ad-close-btn {
    right: 8px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}