/* dy-s.quest — Cinema Video Player Theme */
:root {
  --vq-bg: #030306;
  --vq-surface: #0e0e14;
  --vq-panel: #14141c;
  --vq-border: rgba(255, 255, 255, 0.08);
  --vq-text: #f2f2f5;
  --vq-muted: #8b8b9a;
  --vq-pink: #fe2c55;
  --vq-cyan: #25f4ee;
  --vq-glow-pink: rgba(254, 44, 85, 0.45);
  --vq-glow-cyan: rgba(37, 244, 238, 0.35);
  --vq-radius: 14px;
  --vq-max: 1080px;
  --vq-header-h: 56px;
  --vq-fixed-h: 72px;
  --vq-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vq-font);
  background: var(--vq-bg);
  color: var(--vq-text);
  line-height: 1.75;
  font-size: 15px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vq-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--vq-pink); }

.vq-wrap { width: min(100% - 32px, var(--vq-max)); margin-inline: auto; }

/* ── Header ── */
.vq-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--vq-header-h);
  background: rgba(3, 3, 6, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vq-border);
  transition: box-shadow 0.3s;
}

.vq-topbar.is-lit {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.vq-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.vq-brand img { height: 36px; width: auto; }

.vq-nav {
  display: none;
  gap: 4px;
}

.vq-nav a {
  color: var(--vq-muted);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.vq-nav a:hover,
.vq-nav a.is-on {
  color: var(--vq-text);
  background: rgba(255, 255, 255, 0.06);
}

.vq-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--vq-pink), #d91a45);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--vq-glow-pink);
}

.vq-btn-dl:hover { filter: brightness(1.1); color: #fff !important; }

.vq-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vq-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vq-text);
  border-radius: 2px;
  transition: transform 0.3s;
}

.vq-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vq-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.vq-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vq-drawer {
  display: none;
  position: fixed;
  top: var(--vq-header-h);
  left: 0;
  right: 0;
  background: var(--vq-surface);
  border-bottom: 1px solid var(--vq-border);
  padding: 16px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}

.vq-drawer.is-open { display: flex; }

.vq-drawer a {
  color: var(--vq-text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
}

.vq-drawer a:hover { background: rgba(255, 255, 255, 0.05); }

/* ── Fixed Download Bar ── */
.vq-fixed-dl {
  position: fixed;
  top: var(--vq-header-h);
  left: 0;
  right: 0;
  z-index: 198;
  background: rgba(10, 10, 16, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vq-border);
  padding: 8px 12px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.vq-fixed-dl.is-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.has-fixed-dl .vq-topbar {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.vq-fixed-dl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vq-fixed-label {
  font-size: 11px;
  color: var(--vq-pink);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── Ad Zone ── */
.vq-ad-stage {
  padding: 20px 0 8px;
  background: linear-gradient(180deg, var(--vq-surface) 0%, transparent 100%);
}

.vq-ad-stage-head {
  text-align: center;
  margin-bottom: 14px;
}

.vq-ad-stage-head h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--vq-text);
}

.vq-ad-stage-head p {
  font-size: 13px;
  color: var(--vq-muted);
  margin-top: 4px;
}

#ads,
.vq-ad-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: transparent;
}

.vq-ad-stage #ads {
  max-width: 380px;
}

#ads .vq-ad-item,
.vq-ad-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  box-sizing: border-box;
}

#ads img,
.vq-fixed-dl img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 2px solid rgba(254, 44, 85, 0.2);
}

#ads a:hover img,
.vq-fixed-dl a:hover img {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px var(--vq-glow-pink);
}

.vq-ad-cap,
#ads .caption {
  height: 15px;
  font-size: 11px;
  color: var(--vq-muted);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}

.vq-hidden { display: none !important; }

/* ── Player Hero ── */
.vq-player-hero {
  position: relative;
  margin: 12px 0 36px;
  border-radius: var(--vq-radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--vq-border);
  box-shadow:
    0 0 0 1px rgba(37, 244, 238, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.6);
}

.vq-player-screen {
  position: relative;
  min-height: 420px;
  background: #050508;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.vq-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  filter: blur(2px) saturate(1.2);
}

.vq-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3,3,6,0.92) 0%, rgba(3,3,6,0.55) 45%, rgba(3,3,6,0.75) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(254,44,85,0.18), transparent 55%);
  pointer-events: none;
}

.vq-hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 24px 18px 12px;
  align-items: center;
}

.vq-hero-copy h1 {
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 800;
  line-height: 1.28;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.vq-hero-copy .vq-hero-lead {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 10px 0 14px;
  line-height: 1.65;
}

.vq-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.vq-hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  min-width: 72px;
}

.vq-hero-stat strong {
  display: block;
  font-size: 16px;
  color: var(--vq-cyan);
  font-weight: 800;
}

.vq-hero-stat span {
  font-size: 11px;
  color: var(--vq-muted);
}

.vq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vq-hero-actions .vq-btn-dl {
  padding: 11px 22px;
  font-size: 14px;
}

.vq-hero-actions .vq-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vq-text) !important;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.vq-hero-actions .vq-btn-ghost:hover {
  border-color: var(--vq-cyan);
  color: var(--vq-cyan) !important;
}

.vq-hero-device {
  position: relative;
  justify-self: center;
  width: min(200px, 46vw);
}

.vq-hero-device::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  z-index: 3;
}

.vq-hero-device img {
  width: 100%;
  border-radius: 22px;
  border: 2px solid rgba(254, 44, 85, 0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px var(--vq-glow-pink);
}

.vq-hero-device .vq-play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(254, 44, 85, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--vq-glow-pink);
  animation: vq-pulse 2.5s ease-in-out infinite;
  z-index: 2;
}

.vq-play-ring svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

@keyframes vq-pulse {
  0%, 100% { box-shadow: 0 0 24px var(--vq-glow-pink); }
  50% { box-shadow: 0 0 48px var(--vq-glow-pink), 0 0 60px var(--vq-glow-cyan); }
}

.vq-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.vq-hero-tags span {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(254, 44, 85, 0.15);
  color: #ff6b8a;
  border: 1px solid rgba(254, 44, 85, 0.25);
}

.vq-hero-playlist {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.75);
  border-top: 1px solid var(--vq-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vq-hero-playlist::-webkit-scrollbar { display: none; }

.vq-pl-item {
  flex: 0 0 auto;
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  cursor: pointer;
}

.vq-pl-item.is-active { border-color: var(--vq-pink); }

.vq-pl-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.vq-pl-item span {
  display: block;
  font-size: 10px;
  padding: 4px 6px;
  color: var(--vq-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--vq-panel);
}

.vq-player-chrome {
  position: relative;
  z-index: 3;
  padding: 6px 14px 10px;
  background: rgba(0,0,0,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vq-timeline {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.vq-timeline-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--vq-pink), var(--vq-cyan));
  border-radius: 2px;
  position: relative;
}

.vq-timeline-fill::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.vq-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.vq-ctrl-left, .vq-ctrl-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vq-ctrl-left svg { width: 16px; height: 16px; fill: currentColor; }

/* ── Content Blocks (3:7 ratio) ── */
.vq-block {
  margin-bottom: 48px;
}

.vq-block-head {
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--vq-pink);
}

.vq-block-head h2 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.vq-block-head .vq-tag,
.vq-gallery-head .vq-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--vq-cyan);
  background: rgba(37, 244, 238, 0.1);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.vq-split {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 24px;
  align-items: start;
}

.vq-shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(254, 44, 85, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: var(--vq-panel);
}

.vq-shot::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  z-index: 2;
}

.vq-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.vq-shot-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.vq-prose h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--vq-text);
}

.vq-prose h3:first-child { margin-top: 0; }

.vq-prose p {
  color: rgba(242, 242, 245, 0.88);
  margin-bottom: 14px;
  text-align: justify;
}

.vq-prose ul {
  list-style: none;
  margin: 12px 0 16px;
}

.vq-prose ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: rgba(242, 242, 245, 0.82);
  font-size: 14px;
}

.vq-prose ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--vq-pink);
  font-size: 8px;
  top: 6px;
}

.vq-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.vq-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(254, 44, 85, 0.12);
  color: var(--vq-pink);
  border: 1px solid rgba(254, 44, 85, 0.25);
}

/* ── Feature Strip ── */
.vq-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.vq-strip-card {
  background: var(--vq-panel);
  border: 1px solid var(--vq-border);
  border-radius: var(--vq-radius);
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.vq-strip-card:hover {
  border-color: rgba(37, 244, 238, 0.3);
  transform: translateY(-2px);
}

.vq-strip-card .vq-ico {
  font-size: 28px;
  margin-bottom: 8px;
}

.vq-strip-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.vq-strip-card p {
  font-size: 12px;
  color: var(--vq-muted);
  line-height: 1.5;
}

/* ── FAQ ── */
.vq-faq details {
  background: var(--vq-panel);
  border: 1px solid var(--vq-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.vq-faq summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vq-faq summary::after {
  content: "+";
  color: var(--vq-pink);
  font-size: 20px;
  font-weight: 300;
}

.vq-faq details[open] summary::after { content: "−"; }

.vq-faq details p {
  padding: 0 18px 16px;
  color: var(--vq-muted);
  font-size: 14px;
}

/* ── CTA Band ── */
.vq-cta-band {
  text-align: center;
  padding: 40px 24px;
  margin: 48px 0 32px;
  border-radius: var(--vq-radius);
  background:
    linear-gradient(135deg, rgba(254, 44, 85, 0.12), rgba(37, 244, 238, 0.08)),
    var(--vq-panel);
  border: 1px solid rgba(254, 44, 85, 0.2);
}

.vq-cta-band h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.vq-cta-band p {
  color: var(--vq-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.vq-cta-band .vq-btn-dl {
  font-size: 15px;
  padding: 12px 32px;
}

/* ── Text-only sections ── */
.vq-text-panel {
  background: var(--vq-panel);
  border: 1px solid var(--vq-border);
  border-radius: var(--vq-radius);
  padding: 28px 24px;
  margin-bottom: 32px;
}

.vq-text-panel h2 {
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vq-border);
}

.vq-text-panel p {
  margin-bottom: 12px;
  color: rgba(242, 242, 245, 0.85);
  text-align: justify;
}

.vq-text-panel h3 {
  font-size: 16px;
  margin: 18px 0 8px;
  color: var(--vq-text);
}

/* ── Gallery strip ── */
.vq-gallery {
  margin-bottom: 40px;
}

.vq-gallery-head {
  margin-bottom: 16px;
}

.vq-gallery-head h2 {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
}

.vq-gallery-head p {
  font-size: 13px;
  color: var(--vq-muted);
  margin-top: 6px;
}

.vq-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vq-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--vq-border);
  background: var(--vq-panel);
  transition: border-color 0.2s, transform 0.2s;
}

.vq-gallery-item:hover {
  border-color: rgba(254, 44, 85, 0.35);
  transform: translateY(-2px);
}

.vq-gallery-item img {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  object-position: top;
}

.vq-gallery-item figcaption {
  padding: 10px 12px;
}

.vq-gallery-item figcaption strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.vq-gallery-item figcaption p {
  font-size: 12px;
  color: var(--vq-muted);
  line-height: 1.5;
  margin: 0;
}

.vq-split-reverse .vq-shot { order: 2; }
.vq-split-reverse .vq-prose { order: 1; }

.vq-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vq-keywords a {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(37, 244, 238, 0.08);
  color: var(--vq-cyan);
  border: 1px solid rgba(37, 244, 238, 0.15);
}

.vq-keywords a:hover {
  background: rgba(254, 44, 85, 0.12);
  color: var(--vq-pink);
  border-color: rgba(254, 44, 85, 0.25);
}

/* ── Sub pages ── */
.vq-page-title {
  padding: 32px 0 24px;
  text-align: center;
}

.vq-page-title h1 {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
}

.vq-page-title p {
  color: var(--vq-muted);
  font-size: 14px;
  margin-top: 8px;
}

.vq-legal {
  padding-bottom: 48px;
}

.vq-legal h2 {
  font-size: 18px;
  margin: 28px 0 12px;
  color: var(--vq-text);
}

.vq-legal h3 {
  font-size: 15px;
  margin: 20px 0 8px;
  color: rgba(242, 242, 245, 0.9);
}

.vq-legal p, .vq-legal li {
  color: var(--vq-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.vq-legal ol, .vq-legal ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

/* ── Error pages ── */
.vq-error {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.vq-error-code {
  font-size: clamp(64px, 18vw, 120px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--vq-pink), var(--vq-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vq-error h1 {
  font-size: 22px;
  margin: 16px 0 8px;
}

.vq-error p {
  color: var(--vq-muted);
  font-size: 14px;
  max-width: 400px;
  margin-bottom: 24px;
}

/* ── Footer ── */
.vq-footer {
  border-top: 1px solid var(--vq-border);
  padding: 32px 0 40px;
  margin-top: 16px;
  background: var(--vq-surface);
}

.vq-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.vq-footer-brand img { height: 32px; margin-bottom: 10px; }

.vq-footer-brand p {
  font-size: 13px;
  color: var(--vq-muted);
  line-height: 1.6;
}

.vq-footer-links h4 {
  font-size: 13px;
  color: var(--vq-text);
  margin-bottom: 10px;
  font-weight: 600;
}

.vq-footer-links a {
  display: block;
  font-size: 13px;
  color: var(--vq-muted);
  padding: 4px 0;
}

.vq-footer-links a:hover { color: var(--vq-cyan); }

.vq-footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(139, 139, 154, 0.6);
  padding-top: 20px;
  border-top: 1px solid var(--vq-border);
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .vq-nav { display: flex; }
  .vq-menu-btn { display: none; }
  .vq-drawer { display: none !important; }
  .vq-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .vq-strip { grid-template-columns: repeat(4, 1fr); }
  .vq-gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .vq-hero-body {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 32px 28px 16px;
    gap: 28px;
  }

  .vq-hero-device {
    width: 220px;
    justify-self: end;
  }

  .vq-player-screen { min-height: 360px; }

  #ads,
  .vq-ad-row {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .vq-split {
    grid-template-columns: 1fr;
  }

  .vq-split-reverse .vq-shot,
  .vq-split-reverse .vq-prose { order: unset; }

  .vq-shot {
    max-width: 220px;
    margin: 0 auto;
  }

  .vq-shot img {
    aspect-ratio: 9 / 14;
    max-height: 320px;
  }

  .vq-player-screen { min-height: auto; }

  #ads,
  .vq-ad-row {
    max-width: min(100%, 320px);
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 4px;
  }

  #ads img,
  .vq-fixed-dl img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .vq-ad-cap,
  #ads .caption {
    font-size: 10px;
  }

  .vq-topbar .vq-btn-dl {
    display: none;
  }
}
