:root {
  --bg: #020812;
  --bg-soft: #061323;
  --surface: #071727;
  --surface-2: #0a1d31;
  --line: rgba(143, 180, 224, 0.2);
  --text: #f7fbff;
  --muted: #aebbd0;
  --blue: #087cff;
  --blue-2: #0056d8;
  --blue-soft: rgba(8, 124, 255, 0.14);
  --danger: #ff4d5a;
  --radius: 10px;
  --shadow: 0 18px 60px rgba(0, 65, 160, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 87, 210, 0.16), transparent 34%),
    linear-gradient(180deg, #020812 0%, #03101d 52%, #020812 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 18, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1380px, calc(100% - 32px));
  min-height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1.55rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  white-space: nowrap;
  background: linear-gradient(135deg, #38bdf8 0%, #087cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-mark {
  color: var(--blue);
  font-size: 1.15rem;
  filter: drop-shadow(0 0 10px rgba(8, 124, 255, 0.75));
  -webkit-text-fill-color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
}

.desktop-nav a {
  padding: 22px 0 18px;
  color: #e6edf8;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--blue);
  border-color: var(--blue);
}

.desktop-nav .nav-home {
  color: #f8fbff;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: white;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

.hero {
  padding-top: 20px;
}

.hero h1 {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--blue);
}

.announcement {
  width: min(850px, 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid rgba(103, 168, 255, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(100deg, #0472ff, #0644c7);
  box-shadow: 0 14px 40px rgba(0, 89, 255, 0.24);
}

.announcement-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 1.25rem;
}

.announcement h2 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.announcement p {
  margin: 0;
  font-size: 0.85rem;
  color: #e4efff;
}

.search-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  overflow: hidden;
  min-height: 52px;
  border: 1px solid rgba(130, 165, 210, 0.38);
  border-radius: var(--radius);
  background: rgba(5, 17, 31, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.search-icon {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.35rem;
}

.search-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 10px 0 0;
}

.search-wrap input::placeholder {
  color: #8e9bb0;
}

.search-wrap button {
  align-self: stretch;
  min-width: 88px;
  border: 0;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.events-section {
  padding-top: 20px;
}

.event-board {
  overflow: hidden;
  border: 1px solid rgba(128, 168, 214, 0.38);
  border-radius: var(--radius);
  background: rgba(3, 14, 26, 0.82);
  box-shadow: var(--shadow);
}

.event-head,
.event-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(130px, 1.1fr) minmax(120px, .9fr) 70px;
  align-items: center;
}

.event-head {
  min-height: 44px;
  padding: 0 22px;
  background: linear-gradient(90deg, #006eff, #0643bf);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.event-head span:not(:first-child) {
  text-align: center;
}

.event-row {
  min-height: 66px;
  padding: 9px 22px;
  border-top: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-row:hover {
  background: rgba(10, 41, 72, 0.58);
}

.event-board-modern {
  overflow: visible;
  border-color: rgba(229, 57, 70, 0.22);
  border-radius: 18px;
  background: #080808;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.event-board-modern .event-head {
  min-height: 52px;
  background: #e63946;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.event-filter-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #101010;
}

.event-filter-shell {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #101010;
  position: relative;
  z-index: 5;
  overflow: visible;
}

.event-filter-shell .event-filter-bar {
  border: 0;
  padding: 8px 16px 14px;
}

.event-filter-group + .event-filter-group {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.event-filter-label {
  padding: 12px 16px 0;
  color: #b5b5b5;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-filter-chip-sub {
  font-size: 0.7rem;
  font-weight: 750;
}

.event-filter-bar-popup {
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 16px !important;
}

.event-category-picker {
  position: relative;
  flex: 0 0 auto;
}

.event-category-picker.open {
  z-index: 25;
}

.event-filter-caret {
  margin-left: 2px;
  font-size: 0.58rem;
  opacity: 0.72;
}

.event-subcategory-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(260px, 82vw);
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: #0b0b0b;
  box-shadow: 0 22px 45px rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.event-category-picker.open .event-subcategory-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.event-subcategory-option {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: #d7d7d7;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.event-subcategory-option:hover,
.event-subcategory-option.active {
  color: #fff;
  background: #e63946;
}

.event-filter-chip {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 12px;
  color: #d7d7d7;
  background: #0b0b0b;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.event-filter-chip:hover,
.event-filter-chip.active {
  color: #fff;
  border-color: #e63946;
  background: #e63946;
}

.event-category-picker.open > .event-filter-chip {
  color: #fff;
  border-color: #e63946;
  background: #e63946;
}

.event-filter-chip:hover {
  transform: translateY(-1px);
}

.event-filter-icon {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
}

.event-board-modern .modern-event-list {
  background: #080808;
}

.event-board-modern .event-row {
  min-height: 78px;
  border-top-color: rgba(255,255,255,0.12);
}

.event-board-modern .event-row:hover {
  background: #160708;
}

.event-board-modern .team-logo {
  width: 38px;
  height: 38px;
  background: #0b5fc9;
}

.event-board-modern .team-names strong {
  color: #fff;
  font-size: 0.95rem;
}

.event-board-modern .team-names span,
.event-board-modern .category,
.event-board-modern .event-time {
  color: #d6d6d6;
}

.event-board-modern .watch-button {
  color: #ff3b5c;
  font-size: 2rem;
  font-weight: 900;
}

.team-block {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-logo {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, rgba(0,125,255,.9), rgba(0,55,140,.9));
  border: 1px solid rgba(255,255,255,.16);
  font-size: .72rem;
  font-weight: 800;
}

.team-names {
  min-width: 0;
}

.team-names strong,
.team-names span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-names strong {
  font-size: 0.86rem;
}

.team-names span {
  color: #c2cde0;
  font-size: 0.78rem;
  margin-top: 2px;
}

.category,
.event-time,
.watch-cell {
  text-align: center;
  color: #dce5f4;
  font-size: 0.8rem;
}

.event-time.live {
  color: var(--danger);
  font-weight: 800;
  text-transform: uppercase;
}

.watch-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--blue);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.watch-button:hover {
  background: var(--blue-soft);
  transform: translateX(2px);
}

.center {
  display: flex;
  justify-content: center;
  padding-top: 14px;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  padding: 0 28px;
  border-radius: 7px;
  font-weight: 800;
}

.primary-button {
  border: 1px solid #1b89ff;
  color: white;
  background: linear-gradient(135deg, #0474ff, #0647c8);
  box-shadow: 0 10px 28px rgba(0, 90, 255, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: white;
  background: #0a1726;
}

.legal-note {
  margin: 12px auto 0;
  text-align: center;
  color: #8392aa;
  font-size: 0.72rem;
}

.section {
  padding-top: 18px;
}

.panel {
  border: 1px solid rgba(116, 158, 206, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(3, 13, 25, 0.96), rgba(4, 17, 31, 0.92));
  box-shadow: var(--shadow);
  padding: 16px;
}

.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefit-card {
  padding: 7px 16px 14px;
  text-align: center;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 2.25rem;
  font-weight: 800;
}

.benefit-card h3,
.device-card h3,
.safety-card h3 {
  margin: 0 0 5px;
  font-size: 0.86rem;
}

.benefit-card p,
.safety-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.device-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(104, 153, 210, 0.33);
  border-radius: 8px;
  background: rgba(8, 28, 48, 0.7);
}

.device-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 4.2rem;
  line-height: 1;
}

.device-card h3 {
  font-size: 1rem;
}

.device-card h3 span {
  color: var(--blue);
}

.device-card ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: #d3deee;
  font-size: 0.78rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.safety-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(66, 133, 211, 0.42);
  border-radius: 8px;
  background: rgba(8, 28, 48, 0.7);
}

.safety-card > span {
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1;
}

.faq-panel details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(5, 20, 35, .78);
}

.faq-panel details + details {
  margin-top: 7px;
}

.faq-panel summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 42px 13px 14px;
  list-style: none;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "›";
  position: absolute;
  right: 16px;
  color: var(--blue);
  font-size: 1.8rem;
  transition: transform .2s ease;
}

.faq-panel details[open] summary::after {
  transform: rotate(90deg);
}

.faq-panel summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: .76rem;
}

.faq-panel details p {
  margin: 0;
  padding: 0 18px 16px 54px;
  color: var(--muted);
  font-size: .8rem;
}

.site-footer {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  background: rgba(2, 9, 18, .95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
  padding: 34px 0 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .8rem;
}

.footer-grid h3 {
  margin: 0 0 9px;
  font-size: .86rem;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-links a {
  color: #0d8aff;
  font-size: .78rem;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d9e5f5;
  font-size: .72rem;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
  text-align: center;
  color: #8492a9;
  font-size: .72rem;
}

.footer-page-links {
  color: rgba(143, 180, 224, 0.15);
}

.footer-page-links a {
  color: #8492a9;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s ease;
}

.footer-page-links a:hover {
  color: var(--blue);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: #0b1c2e;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.empty-state {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 12, .78);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid rgba(105, 158, 222, .42);
  border-radius: 12px;
  background: #071523;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 1.8rem;
}

.modal-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.modal-card h2 {
  margin: 0 0 8px;
}

.modal-card > p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

body.theme-broadcast {
  --bg: #f4f8fd;
  --bg-soft: #eef4fb;
  --surface: #ffffff;
  --surface-2: #f7fbff;
  --line: rgba(12, 33, 61, 0.14);
  --text: #071525;
  --muted: #526173;
  --blue: #087cff;
  --blue-2: #0056d8;
  --blue-soft: rgba(8, 124, 255, 0.14);
  --danger: #e2293f;
  --shadow: 0 18px 50px rgba(12, 33, 61, 0.11);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(8, 124, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 52%, #ffffff 100%);
}

body.theme-broadcast .site-header {
  border-bottom-color: rgba(12, 33, 61, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(12, 33, 61, 0.06);
}

body.theme-broadcast .site-header .brand {
  color: #071525;
}

body.theme-broadcast .desktop-nav a {
  color: #243347;
}

body.theme-broadcast .desktop-nav .nav-home,
body.theme-broadcast .desktop-nav a:hover,
body.theme-broadcast .desktop-nav a.active {
  color: var(--blue);
}

body.theme-broadcast .mobile-nav {
  color: #071525;
  background: #ffffff;
  border-bottom: 1px solid rgba(12, 33, 61, 0.12);
}

body.theme-broadcast .mobile-nav a {
  color: #243347;
}

body.theme-broadcast .hero {
  width: min(88%, 1280px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "announce"
    "search"
    "social";
  gap: 16px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 6px;
}

body.theme-broadcast .hero h1 {
  grid-area: title;
  display: block;
  width: min(100%, 980px);
  min-height: 0;
  margin: 0 auto 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #071525;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  background: transparent;
  box-shadow: none;
}

body.theme-broadcast .hero h1 span {
  display: inline;
  color: var(--blue);
  max-width: 100%;
}

body.theme-broadcast .announcement,
body.theme-broadcast .search-wrap {
  width: 100%;
  margin-inline: auto;
  border-color: rgba(103, 168, 255, 0.45);
  color: #071525;
  box-shadow: 0 18px 50px rgba(0, 89, 255, 0.18);
}

body.theme-broadcast .announcement {
  grid-area: announce;
  width: min(100%, 980px);
  margin: 0 auto 8px;
  min-height: 92px;
  align-items: center;
  background: linear-gradient(100deg, #087cff, #0644c7);
}

body.theme-broadcast .announcement h2 {
  color: #ffffff;
  font-size: 0.98rem;
}

body.theme-broadcast .announcement p {
  color: #e4efff;
  font-size: 0.84rem;
}

body.theme-broadcast .search-wrap {
  grid-area: search;
  width: min(100%, 1180px);
  min-height: 52px;
  background: #ffffff;
}

body.theme-broadcast .search-wrap input {
  color: #071525;
}

body.theme-broadcast .search-wrap input::placeholder {
  color: #7a8899;
}

body.theme-broadcast .search-icon {
  color: #526173;
}

body.theme-broadcast .announcement-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

body.theme-broadcast .search-wrap,
body.theme-broadcast .home-social-row {
  grid-column: auto;
}

body.theme-broadcast .home-social-row {
  grid-area: social;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 2px !important;
}

body.theme-broadcast .home-social-row .btn-join {
  min-width: 220px !important;
  min-height: 48px;
  padding: 11px 16px !important;
  border-radius: 10px;
  font-size: 0.86rem !important;
}

body.theme-broadcast .events-section {
  padding-top: 26px;
}

body.theme-broadcast .event-board,
body.theme-broadcast .panel {
  border-color: rgba(12, 33, 61, 0.12);
  color: #071525;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.theme-broadcast .event-head {
  color: #fff;
  background: #101820;
}

body.theme-broadcast .event-row {
  border-top-color: rgba(12, 33, 61, 0.09);
  color: #071525;
}

body.theme-broadcast .event-row:hover {
  background: #f4f8fd;
}

body.theme-broadcast .team-names strong,
body.theme-broadcast .benefit-card h3,
body.theme-broadcast .device-card h3,
body.theme-broadcast .safety-card h3,
body.theme-broadcast .faq-panel summary {
  color: #071525;
}

body.theme-broadcast .team-names span,
body.theme-broadcast .category,
body.theme-broadcast .event-time,
body.theme-broadcast .watch-cell,
body.theme-broadcast .device-card ul {
  color: var(--muted);
}

body.theme-broadcast .event-time.live {
  color: var(--danger);
  font-weight: 800;
}

body.theme-broadcast .panel {
  padding: 22px;
}

body.theme-broadcast .section-title {
  text-align: left;
}

body.theme-broadcast .benefit-grid {
  gap: 12px;
}

body.theme-broadcast .benefit-card,
body.theme-broadcast .device-card,
body.theme-broadcast .safety-card,
body.theme-broadcast .faq-panel details {
  border: 1px solid rgba(12, 33, 61, 0.1);
  border-radius: 8px;
  background: #f7fbff;
}

body.theme-broadcast .benefit-card + .benefit-card {
  border-left: 1px solid rgba(12, 33, 61, 0.1);
}

body.theme-broadcast .benefit-card p,
body.theme-broadcast .safety-card p,
body.theme-broadcast .faq-panel details p,
body.theme-broadcast .legal-note {
  color: var(--muted);
}

body.theme-broadcast .site-footer {
  color: #071525;
  border-top: 1px solid rgba(12, 33, 61, 0.12);
  background: #ffffff;
}

body.theme-broadcast .site-footer .footer-grid p,
body.theme-broadcast .site-footer .copyright,
body.theme-broadcast .site-footer .footer-page-links a {
  color: #526173;
}

body.theme-broadcast .site-footer .socials a {
  color: #087cff;
  border-color: rgba(8, 124, 255, 0.22);
  background: rgba(8, 124, 255, 0.06);
}

body.theme-broadcast .site-footer .brand {
  color: #071525;
}

body.theme-aurora {
  --bg: #FFFFFF;
  --bg-soft: #F7F7F7;
  --surface: #0B0B0B;
  --surface-2: #0B0B0B;
  --line: #E5E5E5;
  --text: #0B0B0B;
  --muted: #B5B5B5;
  --blue: #E63946;
  --blue-2: #E63946;
  --blue-soft: rgba(230, 57, 70, 0.12);
  --danger: #FF3B5C;
  --shadow: 0 18px 42px rgba(11, 11, 11, 0.08);
  color: var(--text);
  background: #FFFFFF;
  animation: none;
}

body.theme-aurora .site-header {
  border-bottom-color: #E5E5E5;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.06);
}

body.theme-aurora .brand,
body.theme-aurora .site-header .brand,
body.theme-aurora .site-footer .brand {
  color: #0B0B0B;
}

body.theme-aurora .brand-mark,
body.theme-aurora .hero h1 span,
body.theme-aurora .feature-icon,
body.theme-aurora .device-card h3 span {
  color: #E63946;
}

body.theme-aurora .desktop-nav a {
  color: #0B0B0B;
}

body.theme-aurora .desktop-nav .nav-home,
body.theme-aurora .desktop-nav a:hover,
body.theme-aurora .desktop-nav a.active {
  color: #E63946;
  border-color: #E63946;
}

body.theme-aurora .mobile-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
}

body.theme-aurora .mobile-nav a {
  color: #0B0B0B;
  border-bottom-color: #E5E5E5;
}

body.theme-aurora .mobile-nav a:hover,
body.theme-aurora .mobile-nav a.active {
  color: #E63946;
  background: rgba(230, 57, 70, 0.08);
}

body.theme-aurora .hero {
  width: min(90%, 1220px);
  padding-top: 42px;
}

body.theme-aurora .hero h1 {
  max-width: 920px;
  margin-inline: auto;
  color: #0B0B0B;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

body.theme-aurora .announcement,
body.theme-aurora .search-wrap,
body.theme-aurora .event-board,
body.theme-aurora .panel {
  border: 1px solid #E5E5E5;
  border-radius: 18px;
  background: #0B0B0B;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

body.theme-aurora .announcement {
  width: min(920px, 100%);
  min-height: 92px;
  animation: none;
}

body.theme-aurora .announcement-icon {
  color: #FFFFFF;
  background: #E63946;
}

body.theme-aurora .announcement h2,
body.theme-aurora .team-names strong,
body.theme-aurora .benefit-card h3,
body.theme-aurora .device-card h3,
body.theme-aurora .safety-card h3,
body.theme-aurora .faq-panel summary {
  color: #FFFFFF;
}

body.theme-aurora .section-title {
  color: #0B0B0B;
}

body.theme-aurora .announcement p,
body.theme-aurora .team-names span,
body.theme-aurora .category,
body.theme-aurora .event-time,
body.theme-aurora .device-card ul,
body.theme-aurora .benefit-card p,
body.theme-aurora .safety-card p,
body.theme-aurora .faq-panel details p,
body.theme-aurora .legal-note {
  color: #B5B5B5;
}

body.theme-aurora .search-wrap {
  min-height: 52px;
}

body.theme-aurora .search-wrap input {
  color: #FFFFFF;
}

body.theme-aurora .search-wrap input::placeholder,
body.theme-aurora .search-icon {
  color: #B5B5B5;
}

body.theme-aurora .search-wrap button,
body.theme-aurora .event-head,
body.theme-aurora .primary-button {
  color: #FFFFFF;
  background: #E63946;
}

body.theme-aurora .home-social-row .btn-join {
  background: #E63946 !important;
  border: 1px solid #E63946;
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.18);
}

body.theme-aurora .event-row {
  border-top-color: rgba(229, 229, 229, 0.16);
}

body.theme-aurora .event-row:hover {
  background: #220f11;
}

body.theme-aurora .event-time.live {
  color: #FF3B5C;
}

body.theme-aurora .fake-player-live-badge {
  color: #FFFFFF;
  border-color: #FF3B5C;
  background: #FF3B5C;
}

body.theme-aurora .fake-player-live-dot {
  background: #FF3B5C;
}

body.theme-aurora .benefit-card,
body.theme-aurora .device-card,
body.theme-aurora .safety-card,
body.theme-aurora .faq-panel details {
  border-color: #E5E5E5;
  background: #0B0B0B;
}

body.theme-aurora .site-footer {
  color: #0B0B0B;
  border-top: 1px solid #E5E5E5;
  background: #FFFFFF;
}

body.theme-aurora .site-footer .footer-grid p,
body.theme-aurora .site-footer .copyright,
body.theme-aurora .site-footer .footer-page-links a {
  color: #4B5563;
}

body.theme-aurora .site-footer .socials a {
  color: #E63946;
  border-color: #E5E5E5;
  background: #F7F7F7;
}

body.theme-broadcast .event-board-modern {
  border-color: rgba(230, 57, 70, 0.22);
  background: #0b0b0b;
}

body.theme-broadcast .event-board-modern .event-head,
body.theme-aurora .event-board-modern .event-head {
  color: #FFFFFF;
  background: #E63946;
}

body.theme-broadcast .event-board-modern .event-row,
body.theme-aurora .event-board-modern .event-row {
  background: #0b0b0b;
  border-top-color: rgba(255,255,255,0.12);
}

body.theme-broadcast .event-board-modern .team-names strong,
body.theme-broadcast .event-board-modern .category,
body.theme-broadcast .event-board-modern .event-time,
body.theme-aurora .event-board-modern .team-names strong,
body.theme-aurora .event-board-modern .category,
body.theme-aurora .event-board-modern .event-time {
  color: #FFFFFF;
}

body.theme-broadcast .event-board-modern .team-names span,
body.theme-aurora .event-board-modern .team-names span {
  color: #B5B5B5;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 10px;
    font-size: .68rem;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  body.theme-broadcast .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "announce"
      "search"
      "social";
    width: min(100% - 24px, 720px);
    gap: 12px;
    padding-top: 24px;
  }

  body.theme-broadcast .hero h1 {
    min-height: 0;
    padding: 0;
    text-align: center;
    font-size: clamp(1.65rem, 6.8vw, 2.45rem);
  }

  body.theme-broadcast .announcement {
    min-height: 0;
  }

  body.theme-broadcast .search-wrap,
  body.theme-broadcast .home-social-row {
    grid-column: auto;
  }

  body.theme-broadcast .home-social-row {
    justify-content: center !important;
    margin-top: 4px !important;
  }

  body.theme-aurora .hero {
    width: min(100% - 24px, 720px);
    padding-top: 24px;
  }

  body.theme-aurora .hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2.35rem);
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    max-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #04101e;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav.open {
    max-height: 480px;
    padding: 0;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: #dfe9f7;
    font-size: .88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: white;
    background: rgba(8, 124, 255, 0.15);
  }

  body.theme-broadcast .mobile-nav {
    background: #ffffff;
  }

  body.theme-broadcast .mobile-nav a {
    color: #243347;
    border-bottom-color: rgba(12, 33, 61, 0.08);
  }

  body.theme-broadcast .mobile-nav a:hover,
  body.theme-broadcast .mobile-nav a.active {
    color: #087cff;
    background: rgba(8, 124, 255, 0.08);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card + .benefit-card {
    border-left: 0;
  }

  .benefit-card {
    border-bottom: 1px solid var(--line);
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section-title {
  margin: 32px 0 20px;
  text-align: center;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 99px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 20px, 1120px);
  }

  .hero {
    padding-top: 16px;
  }

  .hero h1 {
    text-align: center;
    font-size: clamp(0.75rem, 4.5vw, 1.2rem);
    white-space: nowrap;
    overflow: visible;
  }

  body.theme-broadcast .hero {
    padding-top: 18px;
  }

  body.theme-broadcast .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.15rem);
    line-height: 1.06;
    text-align: center;
  }

  body.theme-broadcast .announcement {
    align-items: center;
  }

  body.theme-broadcast .home-social-row .btn-join {
    width: min(100%, 300px);
  }

  .announcement {
    align-items: flex-start;
    padding: 14px;
  }

  .announcement-icon {
    width: 40px;
    height: 40px;
  }

  .search-wrap {
    grid-template-columns: 40px 1fr 48px;
    min-height: 48px;
  }

  .search-wrap button {
    min-width: 48px;
    font-size: 0;
  }

  .search-wrap button::after {
    content: "⌕";
    font-size: 1.45rem;
  }

  .event-head {
    display: none;
  }

  .event-board {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .event-list {
    display: grid;
    gap: 10px;
  }

  .event-row {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr auto;
    grid-template-areas:
      "teams teams watch"
      "category time watch";
    gap: 8px 14px;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(128, 168, 214, 0.35);
    border-radius: 9px;
    background: rgba(5, 18, 32, .95);
  }

  .event-board-modern {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .event-board-modern .event-filter-bar {
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px;
  }

  .event-board-modern .modern-event-list {
    display: grid;
    gap: 10px;
    background: transparent;
  }

  .event-board-modern .event-row {
    min-height: 0;
    border-color: rgba(255,255,255,0.12);
    background: #0b0b0b;
    border-radius: 12px;
  }

  .event-board-modern .event-head {
    display: none;
  }

  body.theme-broadcast .event-board {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.theme-broadcast .event-row {
    border-color: rgba(12, 33, 61, 0.12);
    background: #ffffff;
    color: #071525;
    box-shadow: 0 10px 28px rgba(12, 33, 61, 0.08);
  }

  body.theme-broadcast .category {
    color: #087cff;
  }

  body.theme-broadcast .event-time {
    color: #526173;
  }

  body.theme-aurora .event-board {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.theme-aurora .event-row {
    border-color: rgba(229, 229, 229, 0.16);
    background: #0B0B0B;
    box-shadow: 0 10px 28px rgba(11, 11, 11, 0.12);
  }

  .team-block {
    grid-area: teams;
  }

  .category {
    grid-area: category;
    text-align: left;
    font-size: .72rem;
    color: #7fb8ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .event-time {
    grid-area: time;
    justify-self: end;
    text-align: right;
    font-size: .72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .watch-cell {
    grid-area: watch;
    align-self: center;
  }

  .team-logo {
    width: 36px;
    height: 36px;
  }

  .device-grid {
    grid-template-columns: 1fr;
  }

  .device-card {
    grid-template-columns: 64px 1fr;
  }

  .device-icon {
    font-size: 3.2rem;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.25rem;
  }

  .mobile-nav {
    /* Keep flex vertical layout for dynamic accordion submenus */
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  body.theme-broadcast .hero h1 {
    font-size: clamp(1.38rem, 8.4vw, 1.9rem);
    padding: 0;
    text-align: center;
  }

  body.theme-broadcast .announcement {
    flex-direction: row;
    padding: 12px;
  }

  body.theme-broadcast .announcement h2 {
    font-size: 0.9rem;
  }

  body.theme-broadcast .announcement p {
    font-size: 0.78rem;
  }

  body.theme-aurora .hero h1 {
    font-size: clamp(1.35rem, 8.2vw, 1.9rem);
  }

  body.theme-aurora .announcement {
    padding: 12px;
  }

  .announcement {
    gap: 12px;
  }

  .announcement h2 {
    font-size: .95rem;
  }

  .announcement p {
    font-size: .74rem;
  }

  .benefit-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card:last-child {
    grid-column: auto;
  }

  .benefit-card {
    border-bottom: 1px solid var(--line);
  }

  .device-card {
    grid-template-columns: 1fr;
  }

  .device-icon {
    justify-content: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .modal-actions {
    display: grid;
  }
}

/* ==========================================
   DESKTOP DROPDOWNS & NAVIGATION REDESIGN
   ========================================== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 22px 0 18px !important;
  cursor: pointer;
}

.nav-dropdown > a .caret {
  font-size: 0.52rem;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-dropdown:hover > a .caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--blue);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, #060e1d 0%, #030812 100%);
  border: 1px solid rgba(143, 180, 224, 0.15);
  border-radius: 8px;
  min-width: 175px;
  padding: 8px 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(8, 124, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block !important;
  padding: 8px 16px !important;
  color: #aebbd0 !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  text-align: left;
  white-space: nowrap;
  border-bottom: none !important;
  transition: color 0.15s ease, background-color 0.15s ease, padding-left 0.15s ease;
}

.dropdown-menu a:hover {
  color: #fff !important;
  background-color: rgba(8, 124, 255, 0.12) !important;
  border-left: 3px solid var(--blue);
  padding-left: 13px !important;
}

/* ==========================================
   MOBILE ACCORDION DROPDOWNS
   ========================================== */
.mobile-dropdown {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #dfe9f7;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.mobile-dropdown-trigger .caret {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.mobile-dropdown.open .mobile-dropdown-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-dropdown.open .mobile-dropdown-trigger .caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--blue);
}

.mobile-dropdown-menu {
  display: none;
  background: rgba(2, 6, 12, 0.4);
  padding-left: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  display: block !important;
  padding: 11px 20px !important;
  font-size: 0.82rem !important;
  color: #aebbd0 !important;
  font-weight: 500 !important;
  border-bottom: none !important;
  text-align: left;
}

.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a.active {
  color: #fff !important;
  background: rgba(8, 124, 255, 0.1) !important;
}

/* ==========================================
   SOCIAL ACTION & SHARING PANELS
   ========================================== */
.social-action-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.76));
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 14px;
  padding: 22px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 38px -24px rgba(56, 189, 248, 0.45);
}

.join-channels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 576px) {
  .join-channels-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================
   HOMEPAGE LIVE TV CHANNEL MODULE
   ========================================== */
.live-tv-home-section {
  margin-top: 22px;
  padding-top: 6px;
}

.live-tv-home-section > div,
.live-tv-home-inner {
  width: 100%;
  text-align: center;
}

.live-tv-home-section h2 {
  overflow-wrap: anywhere;
}

.live-tv-home-subtitle {
  max-width: 680px;
  margin: 0 auto 10px;
  color: #000;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: none;
}

.live-tv-home-section .tv-channels-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 14px !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.live-tv-home-section .tv-channel-card {
  min-width: 0;
  min-height: 190px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between;
  border-bottom: 2px solid transparent !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, border-bottom-color 0.25s ease !important;
}

.live-tv-home-section .tv-channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.3) !important;
  border-bottom-color: #e11d48 !important;
  box-shadow: 0 12px 25px rgba(225, 29, 72, 0.12), 0 8px 20px rgba(0,0,0,0.45) !important;
}

.live-tv-home-section .tv-channel-card h3,
.live-tv-home-section .tv-channel-card p {
  max-width: 100%;
}

.live-tv-home-section .tv-channel-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-tv-home-section .btn-watch-live {
  min-height: 38px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.live-tv-home-section .btn-watch-live:hover {
  background: #be123c !important;
}

.live-pulsing-badge-header {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255,255,255,0.95), 0 0 16px rgba(255,255,255,0.45);
  animation: pulse-glow-header 1.2s infinite alternate;
}

.live-dot-glow-red {
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #e11d48;
  animation: pulse-glow-red 1.5s infinite alternate;
}

.live-tv-home-badge {
  min-height: 34px;
}

.live-tv-home-badge span:last-child {
  font-weight: 950 !important;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

@keyframes pulse-glow-header {
  0% { opacity: 0.45; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.25); }
}

@keyframes pulse-glow-red {
  0% { opacity: 0.35; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 760px) {
  .live-tv-home-section {
    margin-top: 18px;
    padding-top: 4px;
  }

  .live-tv-home-section > div {
    margin-top: 0 !important;
  }

  .live-tv-home-heading-row {
    gap: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
  }

  .live-tv-home-badge span:last-child {
    letter-spacing: 1px !important;
    font-size: 0.82rem !important;
  }

  .live-tv-home-section h2 {
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
  }

  .live-tv-home-subtitle {
    margin: 0 auto 9px;
    font-size: 0.8rem;
  }

  .live-tv-home-section .tv-channels-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .live-tv-home-section .tv-channel-card {
    min-height: 0;
    padding: 14px !important;
  }
}

.btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  color: #fff !important;
}

.btn-join svg {
  width: 20px;
  height: 20px;
}

.btn-join.telegram {
  background: linear-gradient(135deg, #229ED9 0%, #177cb0 100%);
  box-shadow: 0 4px 15px rgba(34, 158, 217, 0.2);
}

.btn-join.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-join:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-join.telegram:hover {
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

.btn-join.whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

body.theme-aurora .btn-join.telegram,
body.theme-aurora .btn-join.whatsapp {
  color: #FFFFFF !important;
  border-color: #E63946 !important;
  background: #E63946 !important;
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.18) !important;
}

body.theme-aurora .btn-join.telegram:hover,
body.theme-aurora .btn-join.whatsapp:hover {
  background: #FF3B5C !important;
  box-shadow: 0 14px 30px rgba(255, 59, 92, 0.2) !important;
}

.home-social-row {
  gap: 14px !important;
  margin-top: 16px !important;
}

.home-social-row .btn-join {
  min-width: 210px !important;
  min-height: 48px;
  padding: 11px 16px !important;
  border-radius: 10px;
  font-size: 0.86rem !important;
}

.home-social-row .btn-join svg {
  width: 18px !important;
  height: 18px !important;
}

.share-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
}

.share-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #a9c5e9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 12px;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #dfe9f7 !important;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.14);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  width: 100%;
}

.btn-share svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-share:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -18px rgba(255, 255, 255, 0.35);
}

/* WhatsApp */
.btn-share.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 140, 126, 0.08) 100%) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
  color: #25D366 !important;
}
.btn-share.whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.22) 0%, rgba(18, 140, 126, 0.15) 100%) !important;
  border-color: rgba(37, 211, 102, 0.45) !important;
  color: #25D366 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.35);
}

/* Telegram */
.btn-share.telegram {
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.12) 0%, rgba(23, 124, 176, 0.08) 100%) !important;
  border-color: rgba(34, 158, 217, 0.2) !important;
  color: #229ED9 !important;
}
.btn-share.telegram:hover {
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.22) 0%, rgba(23, 124, 176, 0.15) 100%) !important;
  border-color: rgba(34, 158, 217, 0.45) !important;
  color: #229ED9 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(34, 158, 217, 0.35);
}

/* Facebook */
.btn-share.facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12) 0%, rgba(13, 98, 210, 0.08) 100%) !important;
  border-color: rgba(24, 119, 242, 0.2) !important;
  color: #1877f2 !important;
}
.btn-share.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.22) 0%, rgba(13, 98, 210, 0.15) 100%) !important;
  border-color: rgba(24, 119, 242, 0.45) !important;
  color: #1877f2 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(24, 119, 242, 0.35);
}

/* X / Twitter */
.btn-share.x {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}
.btn-share.x:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(255, 255, 255, 0.2);
}

/* Copy Link */
.btn-share.copy {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%) !important;
  border-color: rgba(139, 92, 246, 0.2) !important;
  color: #c084fc !important;
}
.btn-share.copy:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22) 0%, rgba(99, 102, 241, 0.15) 100%) !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  color: #c084fc !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.35);
}

body.theme-aurora .btn-share.whatsapp,
body.theme-aurora .btn-share.telegram,
body.theme-aurora .btn-share.facebook,
body.theme-aurora .btn-share.x,
body.theme-aurora .btn-share.copy {
  color: #FFFFFF !important;
  border-color: rgba(229, 229, 229, 0.16) !important;
  background: #0B0B0B !important;
  box-shadow: none !important;
}

body.theme-aurora .btn-share.whatsapp:hover,
body.theme-aurora .btn-share.telegram:hover,
body.theme-aurora .btn-share.facebook:hover,
body.theme-aurora .btn-share.x:hover,
body.theme-aurora .btn-share.copy:hover {
  color: #FFFFFF !important;
  border-color: #E63946 !important;
  background: #E63946 !important;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.18) !important;
}

@media (max-width: 768px) {
  .home-social-row {
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .home-social-row .btn-join {
    width: min(100%, 300px);
    min-width: 0 !important;
    min-height: 46px;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
  }

  .social-action-panel {
    padding: 18px;
    border-radius: 12px;
  }

  .share-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-share {
    min-height: 54px;
    padding: 12px 10px;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .share-buttons {
    grid-template-columns: 1fr;
  }

  .btn-share,
  .btn-join {
    min-height: 56px;
    font-size: 0.94rem;
  }
}
