:root {
  /* Dark rose noir: plum-black canvas, hot pink primary, soft pink secondary. */
  --bg: #0d0a12;
  --bg2: #14101c;
  --panel: #1a1424;
  --card: #150f1f;
  --text: #f7f2f8;
  --muted: #9d8fae;
  --accent: #ff2d6f;
  --accent2: #ff8fb0;
  --gold: #ffd24a;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(255, 45, 111, 0.45);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/* Flat premium canvas: content is the star, one soft top sheen. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 32% at 50% -8%, rgba(255, 45, 111, 0.13), transparent 65%),
    linear-gradient(180deg, #0f0b16 0%, #0d0a12 45%, #0a0810 100%);
}
.wrap { max-width: 1560px; margin: 0 auto; padding: 0 1rem; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Micro-polish: dark scrollbar, accent selection, balanced text. */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2336; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3048; }
* { scrollbar-width: thin; scrollbar-color: #2a2336 transparent; }
::selection { background: rgba(255, 45, 111, 0.35); color: #fff; }
.card-body h3, .video-desc p, .hub-intro, .gate-body { text-wrap: pretty; }

/* Ticker */
.ticker {
  overflow: hidden; background: linear-gradient(90deg, #ff2d6f, #ff5a3c);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.ticker-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker-half {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: 0.3rem 1.2rem 0.3rem 0; white-space: nowrap;
}
.ticker-track span {
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.ticker-track em { font-style: normal; color: #ffd24a; font-size: 0.7rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem; max-width: 1560px; }
.brand {
  font-weight: 900; font-size: 1.25rem; color: var(--accent);
  letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap;
}
.brand-mark { display: inline-block; width: 24px; height: 24px; vertical-align: -6px; border-radius: 5px; }
.nav { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.nav a {
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.82rem; font-weight: 800; padding: 0.35rem 0.5rem;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--accent2); }
.nav a.active {
  color: var(--accent2); position: relative;
}
.nav a.active::after {
  content: ""; position: absolute; left: 0.5rem; right: 0.5rem; bottom: 1px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

main { min-height: 62vh; padding-top: 1rem; padding-bottom: 2.6rem; }

/* Featured carousel */
.featured {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 0.8rem;
}
.featured-slides { position: relative; height: clamp(280px, 32vw, 420px); }
.featured-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease; pointer-events: none;
}
.featured-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }
.featured-video, .featured-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.featured-video { z-index: 0; }
.featured-img { z-index: -1; }
.featured-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 72%);
}
.featured-info {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 2.2rem; max-width: 62%;
}
.featured-tag {
  text-transform: uppercase; color: var(--accent2); font-weight: 900;
  letter-spacing: 0.12em; font-size: 0.75rem; text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.featured-title {
  font-size: 1.75rem; font-weight: 900; line-height: 1.15; margin: 0.55rem 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}
.featured-title::before { display: none; }
.featured-meta { color: #d8d2e0; font-size: 0.85rem; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.featured-cta {
  margin-top: 1.1rem; background: var(--accent); color: #fff;
  padding: 0.6rem 1.5rem; border-radius: 10px; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 12px 34px -12px var(--glow);
  transition: filter 0.15s ease;
}
.featured-slide:hover .featured-cta { filter: brightness(1.15); }
.featured-dots {
  position: absolute; bottom: 0.9rem; right: 1.3rem; z-index: 3;
  display: flex; gap: 0.45rem;
}
.dot {
  width: 28px; height: 4px; border: none; border-radius: 2px; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.15s ease;
}
.dot:hover { background: rgba(255, 255, 255, 0.65); }
.dot:focus-visible { outline-offset: 4px; }
.dot.active { background: var(--accent); }
.featured-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin: 0 0 1.4rem; color: var(--muted); font-size: 0.85rem; font-weight: 600;
}
.btn-random {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(120deg, var(--accent), #ff5a3c);
  color: #fff; border: none; border-radius: 10px;
  padding: 0.55rem 1.1rem; font-size: 0.85rem; font-weight: 800;
  cursor: pointer; box-shadow: 0 10px 28px -12px var(--glow);
  transition: filter 0.15s ease;
}
.btn-random:hover { filter: brightness(1.12); color: #fff; }

/* Category pills */
.cat-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--border);
  color: var(--text); font-size: 0.85rem; font-weight: 700; text-transform: capitalize;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent2); }
.cat-count { color: var(--muted); font-size: 0.75rem; }

/* Section heads */
section { margin-bottom: 1.4rem; }
h1, h2 { margin: 0 0 0.7rem; }
h1 { font-size: 1.9rem; font-weight: 800; }
h2 {
  font-size: 1.12rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
}
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.section-head .more { font-size: 0.8rem; color: var(--accent); font-weight: 800; text-transform: uppercase; white-space: nowrap; }

/* Video wall */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.6rem; }
.card {
  display: flex; flex-direction: column;
  transition: transform 0.16s ease, filter 0.16s ease;
}
.card:hover { transform: translateY(-4px); filter: brightness(1.12) saturate(1.08); }
.card:active { transform: translateY(-1px); filter: brightness(0.96); }
.wall .card { background: var(--card); border: 1px solid transparent; border-radius: 10px; overflow: hidden; }
.wall .card:hover .thumb { transform: scale(1.06); }
.wall .card:hover { border-color: rgba(255, 45, 111, 0.5); box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 45, 111, 0.35); }
.thumb-wrap { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s ease, opacity 0.3s ease; }
html.js .thumb { opacity: 0; }
html.js .thumb.loaded { opacity: 1; }
.badge {
  position: absolute; padding: 0.15rem 0.45rem; border-radius: 6px;
  font-size: 0.75rem; font-weight: 800;
  background: rgba(0, 0, 0, 0.78); color: #fff;
}
.badge.duration { bottom: 0.45rem; right: 0.45rem; }
.badge.views { top: 0.45rem; right: 0.45rem; }
.badge.hd {
  top: 0.45rem; left: 0.45rem;
  background: linear-gradient(120deg, #ff2b4e, #ff6b2b);
  color: #fff; letter-spacing: 0.06em;
}
video.preview {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: none;
}
.thumb-wrap:hover video.preview { display: block; }
.thumb-wrap:hover img.thumb { opacity: 0; }
.card-body { padding: 0.5rem 0.6rem 0.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  margin: 0 0 0.12rem; font-size: 0.95rem; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { margin: auto 0 0; padding-top: 0.25rem; color: var(--muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; }

.local-badge { color: #7ee2a8; border: 1px solid rgba(126, 226, 168, 0.35); background: rgba(126, 226, 168, 0.08); padding: 0.15rem 0.5rem; border-radius: 999px; font-size: 0.78rem; }
.local-badge:hover { color: #7ee2a8; border-color: #7ee2a8; }

/* Breadcrumbs + video description */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  color: var(--muted); font-size: 0.8rem; margin-bottom: 0.9rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent2); }
.crumbs span { color: var(--muted); max-width: 46ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.video-desc {
  margin-top: 0.9rem; padding: 0.9rem 1.1rem;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  color: var(--muted); font-size: 0.88rem; line-height: 1.6;
}
.video-desc p { margin: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Video page */
.wrap-wide { max-width: 1700px; }
.video-page header { margin-bottom: 1rem; }
.video-page h1 { font-size: 1.5rem; font-weight: 800; }
.video-page .meta { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin: 0.5rem 0 0; }
.meta { color: var(--muted); font-size: 0.85rem; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9;
  background: #000; border-radius: 12px;
  overflow: hidden;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-tools { display: flex; justify-content: space-between; align-items: center; margin-top: 0.8rem; }

/* Quality badge */
.quality-badge {
  display: inline-flex; align-items: center; line-height: 1;
  padding: 0.18rem 0.55rem; border-radius: 6px;
  font-family: "Inter", "Inter Display", system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 900;
  background: linear-gradient(120deg, #ffd24a, #ff9f2b); color: #1a1204;
  white-space: nowrap;
}
.quality-card { position: absolute; top: 0.45rem; left: 0.45rem; z-index: 2; }

/* Keep watching */
.keep-reading { margin: 1.6rem 0 1rem; }
.next-btn {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem 1.2rem; border-radius: 12px;
  background: linear-gradient(120deg, rgba(255, 43, 78, 0.22), rgba(255, 107, 138, 0.08));
  border: 1px solid rgba(255, 43, 78, 0.45); color: var(--text);
}
.next-btn:hover { border-color: var(--accent); }
.next-label { color: var(--accent2); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.next-btn strong { font-size: 1.1rem; }
.next-cancel {
  margin-top: 0.5rem; background: none; border: 1px solid var(--border);
  color: var(--muted); border-radius: 8px; padding: 0.3rem 0.8rem;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
}
.next-cancel:hover { color: var(--text); border-color: var(--accent); }

/* Search */
.search-panel { margin-bottom: 1.4rem; }
.search-panel h1 { margin-bottom: 0.8rem; }
.search-form { position: relative; max-width: 640px; }
#search-input {
  width: 100%;
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-size: 1.05rem; padding: 0.85rem 2.8rem 0.85rem 1.1rem; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 45, 111, 0.18); }
#search-input::placeholder { color: var(--muted); }
#search-input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.search-clear {
  position: absolute; right: 0.55rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border: none; border-radius: 8px;
  background: rgba(255, 255, 255, 0.08); color: var(--muted);
  font-size: 0.78rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: color 0.15s ease, background 0.15s ease;
}
.search-clear:hover { color: var(--text); background: rgba(255, 255, 255, 0.18); }
mark.hl {
  background: rgba(255, 45, 111, 0.3); color: #ffd9e5;
  border-radius: 3px; padding: 0 0.12em;
}
.card.focused { outline: 2px solid var(--accent); outline-offset: 2px; }
.search-empty {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  padding: 2.6rem 1rem; font-size: 0.92rem;
}
.search-empty p { margin: 0; }
.search-popular { margin-bottom: 1.4rem; }
.search-popular h2 {
  font-size: 0.9rem; margin-bottom: 0.7rem; color: var(--accent2);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Horizontal scroll rows */
.row-section { margin-bottom: 1.4rem; }
.row-title { color: var(--accent2); }
.row-strip {
  display: flex; gap: 0.6rem; overflow-x: auto; padding: 0.25rem 0.2rem 0.6rem;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 96%, transparent);
  mask-image: linear-gradient(90deg, #000 96%, transparent);
}
.row-strip::-webkit-scrollbar { display: none; }
.row-item { flex: 0 0 240px; }
.row-item .card { height: 100%; }
.row-item .card-body h3 { font-size: 0.78rem; }
.row-empty {
  margin: 0; padding: 1.5rem 1rem; text-align: center;
  color: var(--muted); font-size: 0.88rem;
  background: var(--panel); border-radius: 10px;
}

/* Category tiles */
.tile-section { margin-bottom: 1.4rem; }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.tile {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 10; border: 1px solid var(--border);
  transition: transform 0.16s ease, filter 0.16s ease;
}
.tile:hover { transform: translateY(-3px) scale(1.01); filter: brightness(1.08); }
.tile:active { transform: translateY(-1px); filter: brightness(0.96); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.tile:hover img { transform: scale(1.08); }
.tile-label {
  position: absolute; inset: auto 0 0 0; padding: 0.7rem 0.45rem 0.35rem;
  font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}
.tile-label em { font-style: normal; color: var(--accent2); margin-left: 0.3rem; }

/* Pager + tag cloud */
.pager { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 1.6rem; }
.pager-pos { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Hub header strip */
.hub-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem; padding: 0.9rem 1.1rem;
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
}
.hub-head h1 { margin: 0; font-size: 1.3rem; }
.hub-head .count { color: var(--accent2); font-weight: 800; }
.hub-head p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.hub-sub { margin-top: 1.6rem; }
.hub-intro { color: var(--muted); font-size: 0.9rem; max-width: 72ch; margin-bottom: 1.2rem; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.2rem; }

/* ============ Video player (local files) ============ */
.vplayer { position: relative; width: 100%; height: 100%; background: #000; isolation: isolate; user-select: none; }
.vplayer-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.vplayer.ui-hidden.playing .vplayer-video { cursor: none; }

/* Center big button */
.vplayer-center {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: opacity 0.25s ease;
}
.vplayer-big {
  pointer-events: auto; width: 64px; height: 64px; border: none; border-radius: 10px;
  background: rgba(8, 5, 10, 0.55);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.14s ease, background 0.14s ease;
}
.vplayer-big:hover { background: rgba(255, 45, 111, 0.9); transform: scale(1.05); }
.vplayer-big svg { width: 30px; height: 30px; fill: currentColor; }
.i-pause-big, .i-replay { display: none; }
.vplayer.is-ended .i-play-big { display: none; }
.vplayer.is-ended .i-replay { display: block; }

/* Bottom chrome */
.vplayer-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 6;
  padding: 0 0.85rem 0.7rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.78) 100%);
  transition: opacity 0.25s ease;
}
.vplayer.ui-hidden .vplayer-bottom, .vplayer.ui-hidden .vplayer-center { opacity: 0; }

/* Progress rail */
.vplayer-progress {
  position: relative; height: 18px; cursor: pointer;
  display: flex; align-items: center;
  touch-action: none; -webkit-tap-highlight-color: transparent;
}
.vplayer-progress::before {
  content: ""; position: absolute; left: 0; right: 0;
  height: 4px; border-radius: 99px; background: rgba(255, 255, 255, 0.2);
  transition: height 0.14s ease;
}
.vplayer-progress:hover::before, .vplayer-progress.dragging::before { height: 6px; }
.vplayer-buffer, .vplayer-elapsed {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 4px; border-radius: 99px; pointer-events: none;
  transition: height 0.14s ease;
}
.vplayer-progress:hover .vplayer-buffer, .vplayer-progress:hover .vplayer-elapsed,
.vplayer-progress.dragging .vplayer-buffer, .vplayer-progress.dragging .vplayer-elapsed { height: 6px; }
.vplayer-buffer { width: var(--buffered, 0%); background: rgba(255, 255, 255, 0.3); }
.vplayer-elapsed {
  width: var(--played, 0%);
  background: linear-gradient(90deg, #ff2d6f, #ff5c94);
}
.vplayer-scrubber {
  position: absolute; top: 50%; left: var(--played, 0%);
  transform: translate(-50%, -50%); width: 13px; height: 13px; border-radius: 50%;
  background: #fff; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  opacity: 0; transition: opacity 0.14s ease, transform 0.14s ease;
}
.vplayer-progress:hover .vplayer-scrubber, .vplayer-progress.dragging .vplayer-scrubber {
  opacity: 1; transform: translate(-50%, -50%) scale(1.1);
}

/* Hover frame preview (real frames from the local file) */
.vplayer-preview {
  position: absolute; bottom: 26px; left: 0; transform: translateX(-50%);
  width: 176px; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.12s ease;
}
.vplayer-preview.on { opacity: 1; }
.vplayer-preview-video { width: 100%; height: 100%; object-fit: cover; }
.vplayer-preview-time {
  position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  padding: 0.12rem 0.45rem; border-radius: 5px;
  background: rgba(0, 0, 0, 0.75); color: #fff; font-size: 0.68rem; font-weight: 700;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}

/* Controls */
.vplayer-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.25rem; padding: 0 0.1rem; }
.vplayer-group { display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 0; }
.vplayer-group-right { justify-content: flex-end; }
.vbtn {
  width: 44px; height: 44px; border: none; border-radius: 10px;
  background: rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.13s ease;
}
.vbtn:hover { background: rgba(255, 255, 255, 0.2); }
.vbtn:focus-visible { outline: none; box-shadow: 0 0 0 2px #ff2d6f; }
.vbtn svg { width: 22px; height: 22px; fill: currentColor; }
.vbtn-play { width: 46px; height: 46px; background: #ff2d6f; }
.vbtn-play:hover { background: #ff3d7c; }
.vbtn[data-skip] { width: 44px; }
.vbtn[data-skip] svg { width: 20px; height: 20px; }
.i-pause, .i-muted { display: none; }
.vplayer.playing .i-play { display: none; }
.vplayer.playing .i-pause { display: block; }
.vplayer.is-muted .i-vol { display: none; }
.vplayer.is-muted .i-muted { display: block; }

/* Volume cluster */
.vplayer-volume { display: flex; align-items: center; gap: 0.4rem; }
.vplayer-volslider {
  -webkit-appearance: none; appearance: none;
  width: 92px; height: 5px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.22); cursor: pointer;
  margin: 0;
}
.vplayer-volslider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; cursor: pointer;
}
.vplayer-volslider::-moz-range-thumb {
  width: 12px; height: 12px; border: none; border-radius: 50%;
  background: #fff; cursor: pointer;
}

/* Time */
.vplayer-time {
  display: flex; align-items: baseline; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.95);
  white-space: nowrap; padding: 0 0.25rem;
}
.vplayer-time-sep { color: rgba(255, 255, 255, 0.35); }

/* Settings menu */
.vplayer-menuwrap { position: relative; }
.vplayer-menu {
  position: absolute; bottom: calc(100% + 8px); right: 0; z-index: 10;
  width: 230px; padding: 0.4rem;
  background: rgba(18, 12, 20, 0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}
.vplayer-menu[hidden] { display: none; }
.vplayer-menu-head {
  padding: 0.5rem 0.8rem 0.4rem; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
}
.vplayer-menu-row {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0.8rem; border: none; border-radius: 9px;
  background: none; color: rgba(255, 255, 255, 0.85); font-size: 0.83rem; font-weight: 600; cursor: pointer;
  transition: background 0.1s ease;
}
.vplayer-menu-row:hover { background: rgba(255, 255, 255, 0.08); }
.vmenu-value { color: rgba(255, 255, 255, 0.5); font-weight: 700; }
.vmenu-check {
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-block; position: relative;
}
.vmenu-check.on { border-color: #ff2d6f; background: #ff2d6f; }
.vmenu-check.on::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -58%) rotate(45deg);
  width: 4.5px; height: 2.2px; border-left: 1.6px solid #fff; border-bottom: 1.6px solid #fff;
}
.vplayer-menu-back {
  width: 100%; display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.8rem; border: none; border-radius: 9px; background: none;
  color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; font-weight: 700; cursor: pointer;
}
.vplayer-menu-back:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.vplayer-menu-opt {
  width: 100%; text-align: left; padding: 0.55rem 0.9rem 0.55rem 1.2rem;
  border: none; border-radius: 9px; background: none;
  color: rgba(255, 255, 255, 0.75); font-size: 0.82rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between;
}
.vplayer-menu-opt:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.vplayer-menu-opt.active { color: #ff8fb0; }
.vplayer-menu-opt.active::after { content: "\2713"; color: #ff2d6f; font-weight: 900; }

/* Spinner / error */
.vplayer-spinner {
  position: absolute; top: 50%; left: 50%; z-index: 4;
  width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18); border-top-color: #ff2d6f;
  animation: vspin 0.8s linear infinite; opacity: 0; pointer-events: none;
}
@keyframes vspin { to { transform: rotate(360deg); } }
.vplayer.buffering .vplayer-spinner { opacity: 1; }
.vplayer-error {
  position: absolute; inset: 0; z-index: 7; display: none;
  align-items: center; justify-content: center; text-align: center;
  background: rgba(10, 6, 12, 0.9); color: #ff8fb0; font-weight: 700; font-size: 0.95rem; padding: 1rem;
}

/* Player responsive */
@media (max-width: 720px) {
  .vbtn[data-skip] { display: none; }
  .vplayer-volslider { display: none; }
  .vplayer-big { width: 66px; height: 66px; }
  .vplayer-controls { gap: 0.3rem; }
  .vplayer-time { font-size: 0.7rem; }
  .vbtn { width: 40px; height: 40px; }
  .vbtn-play { width: 42px; height: 42px; }
}
@media (hover: none) {
  .vplayer-bottom, .vplayer-center { opacity: 1 !important; }
  .vplayer-scrubber { opacity: 1; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border); color: var(--muted);
  font-size: 0.85rem; padding: 2.2rem 0 2.8rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer-head {
  margin: 0 0 0.9rem; font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text);
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}
.footer-links a { color: var(--muted); font-size: 0.82rem; text-transform: capitalize; }
.footer-links a:hover { color: var(--accent2); }
.footer-legal { grid-template-columns: 1fr; }
.footer-tagline { margin: 0; color: var(--muted); font-size: 0.9rem; max-width: 60ch; }
.footer-note { margin: 0.5rem 0 0; color: rgba(157, 143, 174, 0.75); font-size: 0.75rem; }

/* Animated hero headline */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  background: var(--accent); color: #fff; border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  box-shadow: 0 10px 30px -12px var(--glow);
}
.btn:hover { filter: brightness(1.1); color: #fff; }
.btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); }

/* Legal / misc */
.legal .prose { max-width: 74ch; color: var(--muted); }
.legal .prose p { margin: 0 0 1rem; }

@media (max-width: 760px) {
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Reduced motion: kill marquee, carousel fade, nav drop */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .featured-slide { transition: none; }
  .site-header.nav-open .nav { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
