:root {
  --gold: #FFB800;
  --gold-glow: #FFB80080;
  --gold-dark: #cc9200;
}
[data-theme="dark"] {
  --bg: #000000;
  --bg-card: #111111;
  --bg-nav: rgba(0,0,0,0.95);
  --text: #FFB800;
  --text-muted: #a8862c;
  --border: rgba(255,184,0,0.18);
  --shadow: 0 0 30px rgba(255,184,0,0.08);
}
[data-theme="light"] {
  --bg: #faf6e8;
  --bg-card: #ffffff;
  --bg-nav: rgba(250,246,232,0.97);
  --text: #1a1200;
  --text-muted: #6b5c20;
  --border: rgba(204,146,0,0.25);
  --shadow: 0 4px 30px rgba(204,146,0,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.4s, color 0.4s;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 0;
}
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  height: 54px;
}
.nav-logo img { height: 36px; cursor: pointer; }
.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 0;
  background: var(--gold);
  transition: left 0.25s, right 0.25s, height 0.25s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-color: var(--border);
  background: rgba(255,184,0,0.06);
  overflow: hidden;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 10%; right: 10%; height: 2px; }
.nav-controls { display: flex; align-items: center; gap: 0.75rem; }
.btn-ctrl {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ctrl:hover, .btn-ctrl.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.07);
}
.page { display: none; min-height: 100vh; padding-top: 54px; position: relative; z-index: 1; }
.page.active { display: block; }
.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 54px);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,184,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}
.hero-logo {
  width: min(420px, 80vw);
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 30px rgba(255,184,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
}
.hero-headline span { color: var(--gold); }
.hero-text-group {
  display: contents;
}
.hero-desc {
  max-width: 540px;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.9rem 2.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255,184,0,0.4);
  transition: all 0.3s;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255,184,0,0.6);
}
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 2rem 1rem;
}
.page-logo { height: 55px; filter: drop-shadow(0 0 20px rgba(255,184,0,0.4)); }
.page-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.75rem 0;
}
.about-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding: 3rem 2rem 6rem;
  max-width: 860px;
  margin: 0 auto;
}
.about-block { text-align: center; animation: fadeUp 0.6s ease both; }
.about-block:nth-child(2) { animation-delay: 0.1s; }
.about-block:nth-child(3) { animation-delay: 0.2s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-block h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-block p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.contact-wrapper { max-width: 700px; margin: 0 auto; padding: 2rem 2rem 6rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255,184,0,0.2);
}
.contact-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); }
.contact-card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-card a:hover { background: var(--gold); color: #fff; }
.livetv-outer {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  min-height: calc(100vh - 54px);
  background: var(--bg);
}

.livetv-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  max-width: 1000px;
  min-width: 0;
}

.livetv-top-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.livetv-logo-top {
  height: 32px;
  flex-shrink: 0;
}

.livetv-contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.livetv-contact a {
  color: var(--gold);
  text-decoration: none;
}

.livetv-contact a:hover { text-decoration: underline; }

.livetv-content {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.livetv-player-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.livetv-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: 1fr;
  height: calc(100vh - 54px);
  overflow: hidden;
}
.livetv-main { display: flex; flex-direction: column; overflow: hidden; flex: 1; min-height: 0; }
.video-container {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.video-placeholder { text-align: center; color: #555; }
.video-placeholder .play-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.video-placeholder p { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 2px; opacity: 0.5; }
#player-iframe { width: 100%; height: 100%; border: none; }

.livetv-sidebars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 240px;
  max-height: calc(100vh - 160px);
}

.livetv-sidebar {
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.sidebar-tabs { display: flex; border-bottom: 1px solid var(--border); }
.sidebar-tab {
  flex: 1;
  padding: 1rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.match-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 6px;
  margin-bottom: 2px;
}
.match-item:hover { background: rgba(255,184,0,0.07); border-color: transparent; }
.match-item.selected { background: rgba(255,184,0,0.12); border: 1px solid var(--gold); }
.match-teams { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); line-height: 1.3; }
.match-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.3rem; flex-wrap: wrap; }
.match-time { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; color: var(--gold); }
.match-league { font-size: 0.7rem; color: var(--text-muted); font-style: italic; }
.match-live-badge {
  font-size: 0.6rem;
  background: var(--gold);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.live-badge {
  font-size: 0.58rem;
  background: var(--gold);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
  animation: blink 1.5s infinite;
  text-transform: uppercase;
}
.live-badge.upcoming {
  background: var(--text-muted);
  animation: none;
  opacity: 0.7;
}
.res-badge {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--border);
  padding: 1px 4px;
  border-radius: 3px;
}
.loading-matches { text-align: center; padding: 2rem 1rem; color: var(--text-muted); font-size: 0.85rem; }
.loading-spinner {
  width: 30px; height: 30px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .navbar {
    padding: 0 1rem;
    height: 56px;
  }

  .page-header {
    padding: 1.5rem 0.75rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .page-logo {
    height: 40px;
  }

  .nav-logo img {
    height: 32px;
  }

  .hamburger {
    display: flex;
  }

  .nav-controls {
    gap: 0.4rem;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a,
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    width: 100%;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: background 0.15s;
  }

  .nav-links > li > a:hover,
  .nav-dropdown-toggle:hover {
    background: rgba(255,184,0,0.08);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transform: none;
    padding-top: 0;
    min-width: unset;
    width: 100%;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-dropdown.mobile-expanded .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    max-height: 280px;
  }

  .nav-dropdown-menu-inner {
    transform: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border-top: 1px solid var(--border);
    background: rgba(255,184,0,0.04);
  }

  .nav-dropdown-menu-inner::before {
    display: none;
  }

  .dropdown-item {
    padding: 0.65rem 1.75rem;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .page {
    padding-top: 56px;
    width: 100%;
    overflow-x: hidden;
  }

  .home-hero {
    padding: 2rem 1.25rem;
    min-height: calc(100vh - 56px);
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .home-hero::before {
    width: 100vw;
    max-width: 320px;
  }

  .hero-logo {
    width: min(220px, 65vw);
    margin-bottom: 1.25rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 85vw;
    margin-bottom: 1.75rem;
    padding: 0;
  }

  .hero-cta {
    padding: 0.8rem 2.2rem;
    font-size: 0.95rem;
  }

  .about-sections {
    padding: 1.5rem 1.25rem 4rem;
    gap: 2rem;
  }

  .trusted-section,
  .events-section,
  .bonuses-section {
    padding: 1.25rem 0.75rem 4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .trusted-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
  }

  .trusted-card {
    padding: 1.25rem 0.75rem 1rem;
    min-width: 0;
  }

  .bonus-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .bonus-left {
    flex-wrap: wrap;
  }

  .bonus-divider-v {
    display: none;
  }

  .contact-wrapper {
    padding: 1.25rem 1rem 4rem;
    max-width: 100%;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .livetv-outer {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    min-height: calc(100vh - 56px);
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
  }

  .tv-ad-side {
    display: none !important;
  }

  .livetv-center {
    width: 100%;
    flex: 1;
  }

  .livetv-top-info {
    padding: 0.5rem 0.75rem;
    gap: 10px;
    flex-wrap: wrap;
  }

  .livetv-logo-top {
    height: 24px;
  }

  .livetv-contact {
    font-size: 0.58rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .livetv-content {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .livetv-player-col {
    width: 100%;
  }

  .player-wrapper {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: unset;
    max-height: unset;
  }

  .livetv-sidebars {
    width: 100%;
    flex-direction: row;
    gap: 6px;
    max-height: 35vh;
  }

  .livetv-sidebar {
    flex: 1;
    min-width: 0;
    max-height: 35vh;
    overflow: hidden;
  }

  .chat-panel {
    width: calc(100vw - 20px);
    right: 10px;
    left: 10px;
    bottom: 64px;
    height: 72vh;
    border-radius: 12px;
  }

  .chat-bubble {
    right: 10px;
    bottom: 10px;
  }

  .social-float {
    bottom: 1.25rem;
    left: 0.75rem;
    gap: 0.6rem;
  }

  .social-float-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cta-btn {
    width: 100%;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
    letter-spacing: 1.5px;
  }

  .hero-desc {
    max-width: 92vw;
    font-size: 0.9rem;
  }

  .livetv-sidebars {
    flex-direction: column;
    max-height: none;
  }

  .livetv-sidebar {
    max-height: 28vh;
  }

  .chat-panel {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
    bottom: 60px;
    height: 75vh;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .navbar {
    height: 44px;
    padding: 0 0.75rem;
    flex-wrap: nowrap;
  }

  .nav-logo img {
    height: 24px;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    z-index: 1000;
    width: auto;
    top: auto;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.3px;
    padding: 0.2rem 0.35rem;
    white-space: nowrap;
  }

  .nav-dropdown-toggle {
    font-size: 0.68rem;
    letter-spacing: 0.3px;
    padding: 0.2rem 0.35rem;
    white-space: nowrap;
    justify-content: center;
    width: auto;
  }

  .nav-dropdown {
    width: auto;
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    width: 180px;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-dropdown.mobile-expanded .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    max-height: 300px;
  }

  .nav-dropdown-menu-inner {
    border-radius: 8px;
    margin-top: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  .nav-controls {
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .btn-theme,
  .btn-ctrl {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }

  .lang-divider {
    display: none;
  }

  .page {
    padding-top: 44px;
  }

  .home-hero {
    min-height: calc(100vh - 44px);
    padding: 0.75rem 2rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }

  .home-hero::before {
    display: none;
  }

  .hero-logo {
    width: min(110px, 16vw);
    margin-bottom: 0;
    flex-shrink: 0;
    animation: none;
  }

  .hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60vw;
    text-align: left;
  }

  .hero-headline {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    margin-bottom: 0.35rem;
    letter-spacing: 1.5px;
    line-height: 1;
    width: 100%;
    word-break: normal;
  }

  .hero-desc {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
    max-width: 100%;
    line-height: 1.45;
  }

  .hero-cta {
    padding: 0.5rem 1.4rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .livetv-outer {
    flex-direction: column;
    min-height: calc(100vh - 44px);
    height: calc(100vh - 44px);
    padding: 6px;
    gap: 6px;
    align-items: stretch;
    overflow: hidden;
  }

  .livetv-center {
    flex: 1;
    min-width: 0;
    min-height: 0;
    gap: 5px;
    overflow: hidden;
  }

  .livetv-top-info {
    display: flex;
    padding: 4px 10px;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    min-height: 0;
  }

  .livetv-logo-top {
    height: 20px;
  }

  .livetv-contact {
    font-size: 0.52rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .livetv-content {
    display: flex;
    flex-direction: row !important;
    flex: 1;
    min-height: 0;
    gap: 6px;
    width: 100%;
    overflow: hidden;
  }

  .livetv-player-col {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .player-wrapper {
    aspect-ratio: unset !important;
    flex: 1;
    width: 100%;
    height: 100% !important;
    min-height: 0;
    max-height: none !important;
  }

  .tv-ad-bottom-row {
    display: none;
  }

  .livetv-sidebars {
    width: 175px !important;
    flex-direction: column !important;
    flex-shrink: 0;
    max-height: 100% !important;
    height: 100%;
    gap: 5px;
  }

  .livetv-sidebar {
    max-height: none !important;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .trusted-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-header {
    padding: 0.6rem 1rem 0.4rem;
  }

  .page-logo {
    height: 26px;
  }

  .page-divider {
    margin: 0.3rem 0;
  }

  .about-sections {
    padding: 0.75rem 2rem 2rem;
    gap: 1.25rem;
  }

  .contact-wrapper {
    padding: 0.75rem 1.5rem 2rem;
  }

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

  .social-float {
    display: none;
  }

  .chat-bubble {
    bottom: 8px;
    right: 8px;
  }

  .chat-panel {
    height: 85vh;
    bottom: 48px;
  }
}

.btn-theme {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}
.btn-theme:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.07);
}
.social-float {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}
.social-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.social-float-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.07);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: translateY(-2px);
}
.nav-logo {
  display: flex;
  align-items: center;
  padding-top: 4px;
}
.site-footer {
  position: static;
  text-align: center;
  padding: 0.35rem 1rem;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: var(--bg-nav);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text-muted);
  z-index: 999;
}
.footer-link {
  color: var(--gold);
  text-decoration: none;
  font-style: italic;
  transition: opacity 0.2s;
}
.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.league-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 0.6rem 0.75rem 0.3rem;
  border-bottom: 1px solid var(--border);
  margin-top: 0.4rem;
  opacity: 0.85;
}
.match-score {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 700;
}
.match-finished {
  font-size: 0.6rem;
  background: rgba(255,184,0,0.12);
  color: var(--text-muted);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
}
.player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
}
.player-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #444;
  gap: 1rem;
}
.placeholder-icon { font-size: 3.5rem; opacity: 0.3; }
.player-placeholder p { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 2px; opacity: 0.4; text-align: center; padding: 0 1rem; }
.player-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
#video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  z-index: 1;
}
.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  gap: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.player-wrapper:hover .player-controls,
.player-inner:hover .player-controls {
  opacity: 1;
  pointer-events: auto;
}
.ctrl-left, .ctrl-right { display: flex; align-items: center; gap: 0.5rem; }
.now-playing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(rgba(0,0,0,0.75), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}
.player-wrapper:hover .now-playing-overlay,
.player-inner:hover .now-playing-overlay {
  opacity: 1;
}
.now-playing {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  text-transform: uppercase;
}
.ctrl-btn {
  background: transparent;
  border: 1px solid rgba(255,184,0,0.2);
  color: rgba(255,255,255,0.7);
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1px;
  transition: all 0.2s;
  line-height: 1;
}
.ctrl-btn:hover { border-color: var(--gold); color: var(--gold); }
.vol-slider {
  -webkit-appearance: none;
  width: 70px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.quality-wrap { position: relative; }
.quality-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
  right: 0;
  background: #111;
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 6px;
  overflow: hidden;
  display: none;
  min-width: 80px;
  z-index: 100;
}
.quality-menu.open { display: block; }
.quality-opt {
  padding: 0.5rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 1px;
}
.quality-opt:hover { background: rgba(255,184,0,0.1); color: #fff; }
.quality-opt.active { color: var(--gold); }
.live-badge-ctrl {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 4px;
  padding: 3px 8px;
}
.ch-live-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.ch-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: live-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: live-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(239,68,68,0); }
}
.live-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 1.5px;
}
.player-wrapper:-webkit-full-screen { width: 100vw; height: 100vh; }
.player-wrapper:fullscreen { width: 100vw; height: 100vh; }
.player-wrapper:fullscreen .player-controls { position: absolute; bottom: 0; left: 0; right: 0; }
.chat-bubble {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), #cc9200);
  color: #fff;
  border-radius: 30px;
  padding: 0.6rem 1rem 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,184,0,0.4);
  z-index: 1001;
  transition: all 0.3s;
  user-select: none;
}
.chat-bubble:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,184,0,0.55); }
.chat-bubble.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
.chat-bubble-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.chat-online-count {
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  padding: 1px 6px;
  min-width: 20px;
  text-align: center;
}
.chat-panel {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 320px;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-panel.chat-expanded {
  height: calc(100vh - 170px);
}
.chat-panel.chat-expanded .msg-user {
  font-size: 0.7rem;
}
.chat-panel.chat-expanded .msg-text {
  font-size: 0.8rem;
}
.chat-panel.chat-expanded .chat-input {
  font-size: 1rem;
}
.chat-panel.chat-expanded #chat-username-display {
  font-size: 0.75rem;
}
.chat-panel.chat-expanded .chat-logout {
  font-size: 0.82rem;
}
.chat-panel.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,184,0,0.08), transparent);
  flex-shrink: 0;
}
.chat-header-left { display: flex; flex-direction: column; gap: 0.2rem; }
.chat-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold);
}
.chat-online-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--text-muted);
}
.online-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.chat-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0 0.25rem;
}
.chat-close:hover { color: var(--gold); }
.chat-auth {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.25rem 1rem;
  gap: 0.75rem;
  overflow-y: auto;
}
.auth-logo { margin-bottom: 0.25rem; }
.auth-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active { background: rgba(255,184,0,0.12); color: var(--gold); }
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
.auth-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.auth-input:focus { border-color: var(--gold); }
.auth-input::placeholder { color: var(--text-muted); }
.auth-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: #ff6b6b;
  min-height: 14px;
  letter-spacing: 0.5px;
}
.auth-btn {
  background: linear-gradient(135deg, var(--gold), #cc9200);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  padding: 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.25rem;
}
.auth-btn:hover { opacity: 0.88; }
.chat-room {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 85%;
  align-self: flex-start;
}
.chat-msg.own { align-self: flex-end; align-items: flex-end; }
.chat-msg.admin-msg { background: rgba(255,184,0,0.06); border: 1px solid rgba(255,184,0,0.2); border-radius: 8px; padding: 6px 10px; }
.admin-user { color: var(--gold) !important; font-weight: 700; }
.msg-user {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.chat-msg.own .msg-user { color: var(--text-muted); }
.msg-text {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  line-height: 1.4;
  word-break: break-word;
}
.chat-msg.own .msg-text {
  background: rgba(255,184,0,0.12);
  border-color: rgba(255,184,0,0.25);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 2px;
}
.msg-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  color: var(--text-muted);
  opacity: 0.6;
}
.chat-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send {
  background: linear-gradient(135deg, var(--gold), #cc9200);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.chat-send:hover { opacity: 0.85; }
.chat-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.75rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
#chat-username-display {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.chat-logout {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-logout:hover { border-color: #ff6b6b; color: #ff6b6b; }
.chat-rules-banner {
  background: rgba(255,184,0,0.06);
  border-bottom: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
  text-align: center;
  line-height: 1.5;
}
.chat-rules-banner strong {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  display: block;
  margin-bottom: 0.15rem;
  text-align: center;
}
.chat-input-error {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  color: #ff6b6b;
  padding: 0.35rem 0.85rem;
  background: rgba(255,107,107,0.08);
  border-top: 1px solid rgba(255,107,107,0.2);
  flex-shrink: 0;
}
.chat-sysmsg { align-self: center !important; max-width: 95% !important; }
.chat-sysmsg .msg-text {
  background: rgba(255,184,0,0.07) !important;
  border-color: rgba(255,184,0,0.2) !important;
  color: var(--text-muted) !important;
  font-size: 0.78rem !important;
  font-style: italic;
  text-align: center;
  border-radius: 6px !important;
}
.league-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 0.6rem 0.75rem 0.3rem;
  border-bottom: 1px solid var(--border);
  margin-top: 0.4rem;
  opacity: 0.85;
}
.match-score {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 700;
}
.match-finished {
  font-size: 0.6rem;
  background: rgba(255,184,0,0.12);
  color: var(--text-muted);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 0;
  background: var(--gold);
  transition: left 0.25s, right 0.25s, height 0.25s;
  border-radius: 2px;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--gold);
  border-color: var(--border);
  background: rgba(255,184,0,0.06);
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-toggle::after { left: 10%; right: 10%; height: 2px; }
.nav-dropdown:hover .nav-dropdown-toggle::after { left: 10%; right: 10%; }
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s;
  display: inline-block;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 10px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.25s;
  z-index: 2000;
  min-width: 210px;
}
.nav-dropdown-menu-inner {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,184,0,0.08);
  transform: translateY(-8px);
  transition: transform 0.25s;
  position: relative;
}
.nav-dropdown-menu-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px; height: 10px;
  background: var(--bg-nav);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown:hover .nav-dropdown-menu-inner {
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: 7px;
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: rgba(255,184,0,0.1);
  color: var(--gold);
}
.dp-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.dropdown-item:hover .dp-icon { color: var(--gold); }
.partners-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255,184,0,0.7), 0 0 40px rgba(255,184,0,0.35);
}
.trusted-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 2rem 5rem;
}
.trusted-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.trusted-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.trusted-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(255,184,0,0.18);
}
.trusted-rank {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 1px;
}
.trusted-logo-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0.85rem;
}
.trusted-logo-img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: filter 0.25s;
}
.trusted-card:hover .trusted-logo-img {
  filter: brightness(1.15) drop-shadow(0 0 8px rgba(255,184,0,0.35));
}
.trusted-partner-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.trusted-btn {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.trusted-btn:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,184,0,0.35);
}
.events-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 2rem 5rem;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  animation: fadeUp 0.5s ease both;
}
.event-card:hover {
  border-color: rgba(255,184,0,0.4);
  box-shadow: 0 0 30px rgba(255,184,0,0.12);
}
.event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.event-site-logo-img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.event-status-active {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}
.active-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.event-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.event-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.event-prize {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.5px;
}
.bonus-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  flex-shrink: 0;
}
.bonus-logo-img {
  max-height: 44px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: filter 0.25s;
}
.bonus-card:hover .bonus-logo-img {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(255,184,0,0.3));
}
.bonus-tag.hot {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.bonuses-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 2rem 5rem;
}
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  animation: fadeUp 0.5s ease both;
}
.bonus-card:hover {
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 0 30px rgba(255,184,0,0.12);
  transform: translateX(4px);
}
.bonus-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.bonus-divider-v {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.bonus-info { flex: 1; }
.bonus-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}
.bonus-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.55rem;
}
.bonus-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.bonus-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.bonus-tag.hot {
  border-color: rgba(255,184,0,0.4);
  color: var(--gold);
  background: rgba(255,184,0,0.07);
}
.bonus-cta-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(255,184,0,0.25);
  flex-shrink: 0;
}
.bonus-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255,184,0,0.5);
}
@media (max-width: 640px) {
  .bonus-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-left {
    flex-wrap: wrap;
  }

  .bonus-divider-v {
    display: none;
  }

  .trusted-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translateX(0);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: translateX(0) translateY(0);
  }
}

.match-info { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.match-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); }

.sidebar-sections { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.sidebar-section { display: flex; flex-direction: column; }
#section-channels { flex: 1; min-height: 0; overflow: hidden; display: flex; flex-direction: column; }
#section-channels .sidebar-content { flex: 1; min-height: 0; overflow-y: auto; }
#section-matches { flex: 1; min-height: 0; overflow: hidden; display: flex; flex-direction: column; }
#section-matches .sidebar-content { flex: 1; min-height: 0; overflow-y: auto; }
.sidebar-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 0.6rem 0.75rem 0.4rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,184,0,0.04);
}
.sidebar-match-tabs { display: flex; border-bottom: 1px solid var(--border); }

.sidebar-collapsible { cursor: pointer; user-select: none; display: flex; align-items: center; justify-content: space-between; }
.collapse-arrow { font-size: 0.85rem; color: var(--gold); transition: transform 0.2s; }
.sidebar-collapsible:hover { background: rgba(255,184,0,0.07); }


#player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: auto;
}
#now-playing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.league-header-live {
  color: #fff;
  background: rgba(255,184,0,0.15);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
}

.stats-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.stats-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(255,184,0,0.2);
  animation: fadeUp 0.2s ease;
}
.stats-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.stats-modal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.stats-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.2s;
}
.stats-modal-close:hover { color: var(--gold); }
.stats-modal-score {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--text);
  padding: 1rem 1.25rem 0.5rem;
  flex-shrink: 0;
}
.stats-modal-body {
  overflow-y: auto;
  padding: 0.75rem 1.25rem 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.stats-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.stats-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
  opacity: 0.85;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,184,0,0.07);
}
.stats-row:last-child { border-bottom: none; }
.stats-val-home {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text);
  text-align: right;
}
.stats-val-away {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text);
  text-align: left;
}
.stats-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.stats-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,184,0,0.07);
}
.stats-bar-row:last-child { border-bottom: none; }
.stats-bar-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stats-bar-label-row span:first-child,
.stats-bar-label-row span:last-child {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text);
}
.stats-bar-label-row .stat-name {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.stats-bar-track {
  display: flex;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,184,0,0.08);
}
.stats-bar-home {
  background: var(--gold);
  border-radius: 3px 0 0 3px;
  transition: width 0.4s ease;
}
.stats-bar-away {
  background: rgba(255,184,0,0.35);
  border-radius: 0 3px 3px 0;
  transition: width 0.4s ease;
}
.stats-no-data {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.stats-incidents {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.stats-incident {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  background: rgba(255,184,0,0.04);
}
.stats-incident-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  min-width: 28px;
}
.stats-incident-icon { font-size: 0.85rem; }

.league-header-live {
  animation: blink 1.5s infinite;
}

.sidebar-status-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.sidebar-status-tab {
  flex: 1;
  padding: 0.55rem 0.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-status-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.sidebar-status-tab:hover { color: var(--text); }

.channel-group { margin-bottom: 2px; }
.channel-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.75rem;
  background: rgba(255,184,0,0.06);
  border-left: 2px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.channel-group-header:hover { background: rgba(255,184,0,0.12); }
.channel-group-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.channel-group-body {
  display: none;
}
.channel-group-body.open {
  display: block;
}
.channel-item {
  padding: 0.65rem 0.75rem 0.65rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,184,0,0.05);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.3px;
}
.channel-item:hover { background: rgba(255,184,0,0.07); color: var(--gold); }
.channel-item.selected { background: rgba(255,184,0,0.12); color: var(--gold); border-left: 2px solid var(--gold); }

.unmute-tutorial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(10,10,15,0.96);
  border-bottom: 2px solid rgba(255,184,0,0.3);
}
.unmute-tutorial-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,184,0,0.15);
  padding-bottom: 0.6rem;
}
.unmute-tutorial-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.unmute-tutorial-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.25);
  color: var(--gold);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.unmute-tutorial-close:hover { background: rgba(255,184,0,0.2); }

.tv-ad-zone {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-ad-zone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.tv-ad-zone img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 9px;
  transition: opacity 0.2s;
}

.tv-ad-zone img:hover { opacity: 0.9; }

.tv-ad-side {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-self: stretch;
  flex-shrink: 0;
  width: 400px;
}

.tv-ad-left,
.tv-ad-right {
  flex: 1;
  min-width: 0;
  align-self: stretch;
}

.tv-ad-left img,
.tv-ad-right img {
  height: 100%;
  object-fit: cover;
}

.tv-ad-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  flex-shrink: 0;
}

.tv-ad-bottom {
  width: 100%;
  height: 90px;
  flex-shrink: 0;
}

.tv-ad-bottom img {
  height: 90px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .tv-ad-side {
    display: none !important;
  }

  .tv-ad-bottom {
    height: 60px;
  }

  .tv-ad-bottom img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .tv-ad-bottom {
    height: 50px;
  }

  .tv-ad-bottom img {
    height: 50px;
  }
}

.livetv-sidebar.ch-collapsed {
  flex: 0 0 auto;
  min-height: 0;
}

.livetv-sidebar.ch-expanded {
  flex: 0 0 auto;
  min-height: 0;
  max-height: 45%;
}

.ch-alts {
  overflow: hidden;
}

@media (min-width: 901px) and (max-width: 1400px) {
  .tv-ad-side {
    width: 300px;
  }

  .tv-ad-bottom img {
  height: 87px;
  width: 600px;
  object-fit: cover;
}

  .livetv-center {
    max-width: 700px;
    flex-shrink: 1;
  }

  .livetv-sidebars {
    width: 220px;
    flex-shrink: 0;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .tv-ad-side {
    display: none !important;
  }

  .livetv-center {
    max-width: none;
  }
}

.livetv-sidebar.ch-expanded #channels-list {
  max-height: 20px;
  overflow-y: auto;
}

#channels-list {
  max-height: 20px;
  overflow-y: auto;
}