/* ===========================
  THEME VARIABLES (edit these)
  =========================== */
/* ===========================
   CSS VARS (keep using var(--*) like before)
   =========================== */
:root {
  --bg: #050706;
  --panel: #0b0e0c;
  --text: white;
  --muted: #9aa39a;
  --line: rgba(255, 255, 255, 0.08);
  --accent: red;
  --accent2: #3fe85d;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1320px;
}

/* ===========================
  BASE
  =========================== */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

.no-scroll {
  overflow: hidden;
}

.page {
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .page {
    padding-bottom: 78px;
  }
}
/* ===========================
  TOPBAR / HEADER
  =========================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar,
.topbar-inner {
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-badge {
  width: 28px;
  height: 20px;
  border-radius: 6px;
  background: white;
  display: grid;
  place-items: center;
  border: 1px red thin;
  color: var(--text);
}
.brand-badge img {
  width: 80%;
  height: 80%;
}

.brand-text {
  font-size: 20px;
}

.brand-tv {
  font-size: 12px;
  opacity: 0.9;
  margin-left: 2px;
}

.nav-desktop {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-right: auto;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.92;
}

.nav-link i {
  font-size: 12px;
  opacity: 0.7;
  margin-left: 6px;
}

.actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  width: min(380px, 40vw);
}

.searchbox i {
  opacity: 0.8;
}

.searchbox input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--text);
}

.iconbtn {
  border: 0;
  background: transparent;
  color: var(--text);
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  border-radius: 12px;
}

.iconbtn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lang {
  font-weight: 700;
  font-size: 12px;
}

.btn-subscribe {
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.btn-subscribe.w {
  width: 100%;
  text-align: center;
  display: block;
}

/* Mobile header behavior */
.burger {
  display: none;
}

@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
  .searchbox {
    display: none;
  }
  .btn-subscribe {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}
/* Drawer */
.mobile-drawer {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  inset: auto !important;
  display: none;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  background: rgba(10, 12, 10, 0.98);
  border-left: 1px solid var(--line);
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 2px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.mobile-drawer-title {
  font-weight: 800;
}

.drawer-link {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 650;
  opacity: 0.95;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.drawer-cta {
  margin-top: 16px;
}

/* ===========================
  HERO
  =========================== */
.hero,
.hero-bg,
.hero-inner {
  z-index: auto;
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  transition: opacity 0.26s ease;
  will-change: opacity;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 18% 35%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8) 60%), linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px 30px;
  display: grid;
  grid-template-columns: 1.2fr 240px;
  gap: 22px;
  align-items: stretch;
  min-height: 580px;
}

.hero-main {
  padding-top: 58px;
  transition: opacity 0.26s ease, transform 0.26s ease;
  will-change: opacity, transform;
}

.hero.is-switching .hero-main {
  opacity: 0;
  transform: translateY(6px);
}

.hero-bg.is-fading {
  opacity: 0;
}

.hero-kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.hero-title {
  margin: 0 0 10px;
}

.hero-h1 {
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
}

.pill i {
  color: var(--accent);
  margin-right: 6px;
}

.hero-desc {
  max-width: 620px;
  line-height: 1.55;
  color: rgba(233, 239, 233, 0.88);
  font-size: 14px;
  margin: 0 0 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-play {
  border: 0;
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn-play i {
  font-size: 18px;
}

.btn-ghost {
  border: 0;
  background: transparent;
  color: rgba(233, 239, 233, 0.9);
  font-weight: 750;
  padding: 12px 10px;
  border-radius: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn-ghost i {
  opacity: 0.9;
}

/* Thumbs */
.hero-thumbs {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
}

.thumb {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  outline: none;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  opacity: 0.88;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thumb.active img {
  opacity: 1;
  border-color: rgba(255, 0, 0, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.22), 0 0 18px rgba(255, 0, 0, 0.16);
}

/* Hero controls */
.hero-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: grid;
  place-items: center;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(233, 239, 233, 0.9);
  font-weight: 700;
  font-size: 13px;
}

.hero-progress .line {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.hero-progress .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  background: var(--accent);
  transition: width 0.08s linear;
}

/* Mobile hero layout */
@media (max-width: 991px) {
  .hero {
    min-height: 640px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding: 18px 14px 16px;
  }
  .hero-main {
    padding-top: 44px;
  }
  .hero-thumbs {
    flex-direction: row;
    gap: 10px;
    padding-top: 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .thumb img {
    height: 72px;
    width: 78px;
  }
  .hero-controls {
    right: 14px;
    bottom: 116px;
  }
  .hero-progress .line {
    width: 110px;
  }
}
@media (max-width: 991px) {
  .hero-controls {
    display: none;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 156px;
    max-width: calc(100vw - 28px);
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .hero-progress .line {
    width: 96px;
  }
  .circle {
    width: 46px;
    height: 46px;
  }
}
/* ===========================
  SECTIONS
  =========================== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 850;
}

.section-title .emoji {
  margin-right: 6px;
}

.viewall {
  color: rgba(233, 239, 233, 0.82);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewall i {
  opacity: 0.7;
}

/* Rails */
.rail {
  display: flex;
  gap: 16px;
  overflow: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.poster {
  width: 260px;
  flex: 0 0 auto;
}

.poster-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.poster-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.badge-premium {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffd56a;
}

.poster-plus {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(233, 239, 233, 0.92);
  display: grid;
  place-items: center;
}

/* Center play button */
.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--accent);
  display: grid;
  place-items: center;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.25), 0 0 26px rgba(255, 0, 0, 0.35);
}

.poster:hover .poster-play {
  opacity: 1;
  pointer-events: auto;
}

.poster-meta {
  padding-top: 10px;
}

.poster-title {
  font-weight: 850;
}

.poster-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.8);
}

.poster-sub.muted {
  color: rgba(154, 163, 154, 0.88);
}

@media (max-width: 991px) {
  .section {
    padding: 18px 14px;
  }
  .section-title {
    font-size: 18px;
  }
  .poster {
    width: 210px;
  }
  .poster-img img {
    height: 300px;
  }
  .poster-play {
    opacity: 1;
    pointer-events: auto;
  }
}
/* Categories */
.cat-rail {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.cat {
  width: 140px;
  flex: 0 0 auto;
}

.cat img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: var(--shadow);
}

.cat-name {
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.15;
}

/* Blog */
.blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: stretch;
}

.blog-card img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.blog-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.blog-body p {
  margin: 0 0 10px;
  color: rgba(233, 239, 233, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.blog-meta {
  font-size: 12px;
  color: rgba(154, 163, 154, 0.92);
}

@media (max-width: 991px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
  .blog-card {
    grid-template-columns: 130px 1fr;
  }
  .blog-card img {
    width: 130px;
  }
  .blog-body h3 {
    font-size: 16px;
  }
}
/* CTA */
.cta {
  position: relative;
  margin: 18px auto 48px;
  max-width: var(--max);
  padding: 0 20px;
}

.cta-bg {
  position: absolute;
  inset: 0 20px;
  border-radius: 26px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25)), url("https://placehold.co/1600x700/png?text=CTA+Background") center/cover no-repeat;
  filter: saturate(0.95);
  opacity: 0.95;
}

.cta-inner {
  position: relative;
  border-radius: 26px;
  padding: 44px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cta-title {
  font-weight: 950;
  letter-spacing: 1px;
  font-size: 46px;
  line-height: 1.02;
}

.cta-sub {
  margin-top: 10px;
  color: rgba(233, 239, 233, 0.86);
  font-weight: 650;
}

.cta-btn {
  margin-top: 18px;
  border: 0;
  background: rgba(255, 0, 0, 0.22);
  color: rgba(233, 239, 233, 0.92);
  border: 1px solid rgba(255, 0, 0, 0.35);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 850;
}

@media (max-width: 991px) {
  .cta {
    padding: 0 14px;
  }
  .cta-bg {
    inset: 0 14px;
  }
  .cta-inner {
    padding: 32px 16px;
  }
  .cta-title {
    font-size: 30px;
  }
}
/* Bottom nav (mobile only) */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 74px;
  background: rgba(6, 7, 6, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav .bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(233, 239, 233, 0.75);
  font-size: 11px;
  font-weight: 700;
}

.bottom-nav .bn-item i {
  font-size: 18px;
}

.bottom-nav .bn-item.active {
  color: var(--text);
}

@media (max-width: 991px) {
  .bottom-nav {
    display: flex;
  }
}
/* Scroll-to-top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 65;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .to-top {
    bottom: 22px;
  }
}
/* ===========================
  #2 Sections: Top 10
  =========================== */
.top10-rail {
  display: flex;
  gap: 18px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.top10-card {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  min-height: 430px;
}

.top10-num {
  position: absolute;
  left: -6px;
  bottom: 26px;
  font-size: 110px;
  font-weight: 950;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.top10-poster {
  position: relative;
  z-index: 1;
  margin-left: 74px;
  width: 260px;
}

@media (max-width: 991px) {
  .top10-card {
    width: 300px;
    min-height: 390px;
  }
  .top10-num {
    font-size: 92px;
    bottom: 18px;
  }
  .top10-poster {
    margin-left: 62px;
    width: 210px;
  }
}
/* Artists rail */
.artist-rail {
  display: flex;
  gap: 16px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.artist {
  flex: 0 0 auto;
  width: 130px;
  text-align: center;
}

.artist img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
}

.artist-name {
  margin-top: 10px;
  font-weight: 850;
  font-size: 13px;
  color: rgba(233, 239, 233, 0.92);
}

/* ===========================
  Glow accents + Focus
  =========================== */
.poster-img,
.cat img,
.artist img,
.thumb img {
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.poster:hover .poster-img {
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35), 0 0 22px rgba(255, 0, 0, 0.18), var(--shadow);
  transform: translateY(-2px);
}

/* Categories glow */
.cat:hover img {
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.26), 0 0 18px rgba(255, 0, 0, 0.12), var(--shadow);
  transform: translateY(-2px);
}

/* Artists glow */
.artist:hover img {
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.26), 0 0 18px rgba(255, 0, 0, 0.12), var(--shadow);
  transform: translateY(-2px);
}

/* Keyboard focus glow */
.poster a:focus-visible,
.poster button:focus-visible,
.cat:focus-visible,
.artist:focus-visible,
.thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.22);
  border-radius: 18px;
}

/* ===========================
  Hide bottom scrollbars (keep scrolling)
  =========================== */
.rail,
.cat-rail,
.hero-thumbs,
.top10-rail,
.artist-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar,
.cat-rail::-webkit-scrollbar,
.hero-thumbs::-webkit-scrollbar,
.top10-rail::-webkit-scrollbar,
.artist-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* ===========================
  Header dropdowns ONLY
  =========================== */
.topbar .dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.topbar .dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(10, 12, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: none;
  z-index: 200; /* higher than hero */
}

.topbar .dd.open .dd-menu {
  display: block;
}

.topbar .dd-menu--right {
  left: auto;
  right: 0;
}

.topbar .dd-item {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: rgba(233, 239, 233, 0.92);
  font-weight: 750;
  cursor: pointer;
}

.topbar .dd-item:hover {
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.18) inset;
}

.topbar .dd-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 6px;
}

/* Remove default button look for triggers (scoped) */
.topbar .dd-trigger {
  border: 0;
  background: transparent;
  color: rgba(233, 239, 233, 0.92);
  cursor: pointer;
  font: inherit;
}

.topbar .nav-desktop .dd-trigger {
  padding: 10px 10px;
  border-radius: 12px;
}

.topbar .nav-desktop .dd-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.topbar .dd-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.22);
}

/* ===== Modal hard-fix: force overlay behavior ===== */
.modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative !important;
  width: min(440px, 100vw - 28px);
  margin: 90px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 10, 0.96);
  box-shadow: var(--shadow);
  padding: 14px;
}

@media (max-width: 991px) {
  .modal-card {
    margin-top: 70px;
  }
}
/* ===== Lock modal form styling (prevents other components from overriding) ===== */
.modal .modal-card {
  background: rgba(10, 12, 10, 0.96);
}

.modal .auth-row label {
  font-weight: 800;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.85);
}

.modal .auth-row input {
  height: 44px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.modal .auth-row input:focus {
  border-color: rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.18);
}

.modal .auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 2px 14px;
}

.modal .auth-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 950;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.18);
}

.modal .link,
.modal .linkbtn {
  color: rgba(233, 239, 233, 0.85);
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
}

.modal .linkbtn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.modal-head {
  position: relative;
  padding: 6px 4px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  font-weight: 950;
  letter-spacing: 0.2px;
}

/* close button pinned */
.modal-head [data-close-modal] {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.modal-head [data-close-modal]:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Modal layout spacing ===== */
.modal-card {
  padding: 18px; /* was 14px */
  border-radius: 20px;
}

.auth {
  margin-top: 14px;
}

.auth-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px; /* add consistent vertical spacing */
}

.auth-row input {
  height: 48px; /* slightly taller */
}

/* Pricing page */
.hero--pricing .btn-play {
  background: var(--accent);
  color: var(--text);
}

.pricing .pricing-sub {
  color: rgba(233, 239, 233, 0.72);
  font-weight: 650;
  font-size: 13px;
}

.pricing-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.plan.featured {
  border-color: rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.18), var(--shadow);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.plan-name {
  font-weight: 950;
  font-size: 18px;
}

.plan-note {
  color: rgba(233, 239, 233, 0.7);
  font-size: 12px;
  font-weight: 650;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-price .amt {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.plan-price .per {
  color: rgba(233, 239, 233, 0.7);
  font-weight: 650;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  color: rgba(233, 239, 233, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-list li:last-child {
  border-bottom: 0;
}

.plan-list i {
  color: var(--accent);
}

.plan-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  background: rgba(255, 0, 0, 0.18);
  border: 1px solid rgba(255, 0, 0, 0.35);
  color: rgba(233, 239, 233, 0.95);
}

.plan-btn:hover {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.18);
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
  Contact page
  =========================== */
.hero--simple .hero-inner--simple {
  grid-template-columns: 1fr;
  min-height: 420px;
  padding: 26px 20px 20px;
}

@media (max-width: 991px) {
  .hero--simple .hero-inner--simple {
    padding: 18px 14px 16px;
  }
}
.contact .contact-sub {
  color: rgba(233, 239, 233, 0.72);
  font-weight: 650;
  font-size: 13px;
}

.contact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.contact-row {
  margin-bottom: 14px;
}

.contact-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.85);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px;
  outline: none;
}

.field input,
.field select {
  height: 48px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.18);
}

.contact-btn {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 950;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.18);
}

.contact-btn:hover {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.45), 0 0 60px rgba(255, 0, 0, 0.22), 0 0 120px rgba(255, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .contact-card {
    padding: 16px;
  }
  .contact-row.two {
    grid-template-columns: 1fr;
  }
}
.contact-row select option {
  color: black;
}

/* Events pages (imported into site.scss) */
.events-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 14px 70px;
}

.events-hero {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.events-hero h1 {
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}

.events-hero p {
  margin: 0;
  color: rgba(233, 239, 233, 0.75);
  font-size: small;
  max-width: 820px;
}

/* ---------- View All Events grid ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* 2 columns on medium screens */
@media (max-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 1 column on mobile */
@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}
.event-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.event-banner {
  position: relative;
  height: 170px;
  background: #000;
}

.event-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
}

.event-badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 10, 0.7);
  backdrop-filter: blur(10px);
}

.event-badge--live {
  border-color: rgba(103, 255, 116, 0.35);
  box-shadow: 0 0 0 1px rgba(103, 255, 116, 0.22), 0 0 24px rgba(103, 255, 116, 0.14);
}

.event-body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.event-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  margin: 0;
  font-size: 18px;
}

.event-short {
  font-size: small;
  margin: 0;
  color: rgba(233, 239, 233, 0.78);
  line-height: 1.45;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.9);
}

.event-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn-solid {
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 950;
  cursor: pointer;
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.3), 0 0 40px rgba(103, 255, 116, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-solid:hover {
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.44), 0 0 60px rgba(103, 255, 116, 0.18);
}

.btn-outline {
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(233, 239, 233, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(103, 255, 116, 0.3);
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.14);
}

/* ---------- Pagination ---------- */
.pager {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pager a, .pager button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 239, 233, 0.9);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
}

.pager .active {
  border-color: rgba(103, 255, 116, 0.4);
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.16);
}

/* ---------- Event Details ---------- */
.event-detail {
  display: grid;
  gap: 14px;
}

.event-detail-banner {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.event-detail-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.event-detail-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}

.detail-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.detail-title {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.detail-sub {
  margin: 0;
  color: rgba(233, 239, 233, 0.74);
  font-weight: 650;
}

.detail-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-aside .price {
  font-weight: 950;
  font-size: 32px;
  letter-spacing: -0.4px;
}

.detail-aside .small {
  margin-top: 6px;
  color: rgba(233, 239, 233, 0.7);
  font-weight: 650;
  font-size: 13px;
}

.detail-aside .cta {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.prose {
  color: rgba(233, 239, 233, 0.8);
  line-height: 1.7;
}

.prose h2 {
  margin: 0 0 10px;
  font-weight: 950;
}

.prose p {
  margin: 0 0 12px;
}

.prose img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: block;
  margin: 12px 0;
}

/* ---------- Checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field label {
  font-weight: 850;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.85);
}

.field input, .field select, .field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px;
  outline: none;
}

.field input, .field select {
  height: 48px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(103, 255, 116, 0.45);
  box-shadow: 0 0 0 3px rgba(103, 255, 116, 0.16);
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(233, 239, 233, 0.82);
  font-weight: 750;
  margin-top: 10px;
}

.summary-line strong {
  color: rgba(233, 239, 233, 0.95);
}

.summary-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-weight: 950;
  font-size: 18px;
}

.mini-event {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-event img {
  width: 92px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.mini-event .t {
  font-weight: 950;
  margin: 0 0 4px;
}

.mini-event .s {
  margin: 0;
  color: rgba(233, 239, 233, 0.7);
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-detail-top {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-row {
    grid-template-columns: 1fr;
  }
  .event-detail-banner img {
    height: 220px;
  }
  .detail-title {
    font-size: 26px;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero .hero-main,
  .hero-progress .fill {
    transition: none !important;
  }
}
/* Player page styles only (uses your existing CSS vars from site.css) */
.player-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 14px 60px;
}

.player-shell {
  border-radius: 22px;
}

.player-stage {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.video-wrap {
  position: relative;
  width: 100%;
  height: min(62vh, 640px);
  background: #000;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.big-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.big-play i {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.18), 0 0 40px rgba(103, 255, 116, 0.18);
  font-size: 34px;
  color: rgba(233, 239, 233, 0.95);
}

.controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(10, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.ctl {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 239, 233, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.ctl:hover {
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.2), 0 0 30px rgba(103, 255, 116, 0.12);
}

.time {
  font-weight: 750;
  font-size: 12px;
  color: rgba(233, 239, 233, 0.85);
  white-space: nowrap;
}

.time .sep {
  opacity: 0.6;
  padding: 0 6px;
}

.seek {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.seek::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(103, 255, 116, 0.35);
}

.vol {
  width: 110px;
  height: 6px;
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.vol::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.spacer {
  width: 6px;
}

/* Below content (collapsed mode) */
.player-below {
  padding: 18px 6px 0;
}

.player-meta .kicker {
  color: var(--accent);
  font-weight: 850;
  letter-spacing: 1px;
  font-size: 12px;
}

.player-meta .title {
  margin: 6px 0 8px;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.player-meta .sub {
  color: rgba(233, 239, 233, 0.72);
  font-weight: 700;
  margin-bottom: 10px;
}

.player-meta .desc {
  color: rgba(233, 239, 233, 0.82);
  max-width: 760px;
}

.actions-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* Expanded mode (full page height like the 2nd screen) */
.player-shell.expanded .video-wrap {
  height: calc(100vh - 22px);
}

.player-shell.expanded .player-below {
  display: none;
}

@media (max-width: 991px) {
  .video-wrap {
    height: min(56vh, 520px);
  }
  .controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .vol {
    display: none;
  }
  .player-meta .title {
    font-size: 28px;
  }
}

/*# sourceMappingURL=site.css.map */
