/* ============================================================
   DREAMYDOLLS TEMPLATE — dark glassmorphic AI-companion portal
   Prefix: dd-   Accent: pink (#e060a0) → purple (#9b40d8)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --dd-bg:        #0f0f13;
  --dd-surface:   #16161c;
  --dd-surface2:  #1b1b22;
  --dd-footer:    #0c0c0f;
  --dd-text:      #f5f5f7;
  --dd-text2:     #c0c0c8;
  --dd-muted:     #a0a0aa;
  --dd-muted2:    #8a8a96;
  --dd-muted3:    #6a6a76;
  --dd-muted4:    #5a5a66;
  --dd-accent-a:  #e060a0;
  --dd-accent-b:  #9b40d8;
  --dd-accent:    linear-gradient(135deg, #e060a0 0%, #9b40d8 100%);
  --dd-gold:      #f5c451;
  --dd-line:      rgba(255,255,255,.07);
  --dd-line2:     rgba(255,255,255,.1);
  --dd-card:      rgba(255,255,255,.04);
  --dd-card2:     rgba(255,255,255,.06);
  --dd-glow:      0 12px 50px rgba(224,96,160,.4), 0 0 0 1px rgba(224,96,160,.35);
  --dd-shadow:    0 20px 60px rgba(0,0,0,.5);
  --dd-maxw:      1400px;
  --dd-radius:    16px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--dd-bg);
  color: var(--dd-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -.02em; }

::-webkit-scrollbar { height: 8px; width: 8px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

@keyframes ddBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,96,160,0); }
  50%      { box-shadow: 0 0 14px 0 rgba(224,96,160,.35); }
}

/* ── Shell ───────────────────────────────────────── */
.dd-app { background: var(--dd-bg); min-height: 100vh; display: flex; flex-direction: column; }
.dd-main { flex: 1 0 auto; }
.dd-wrap { max-width: var(--dd-maxw); margin: 0 auto; padding: 0 40px; }
.dd-section { padding: 30px 0; }

/* ── Header ──────────────────────────────────────── */
.dd-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 40px;
  background: rgba(15,15,19,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dd-line);
}
.dd-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.dd-logo-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--dd-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 17px; color: #fff;
  box-shadow: 0 0 18px rgba(224,96,160,.45);
}
.dd-logo-text { font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: var(--dd-text); }
.dd-logo-accent { background: var(--dd-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

.dd-nav { display: flex; align-items: center; gap: 4px; }
.dd-nav-link {
  padding: 8px 14px; border-radius: 8px; color: var(--dd-muted);
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid transparent; white-space: nowrap;
  transition: color .15s, background .15s;
}
.dd-nav-link:hover { color: var(--dd-text); background: rgba(255,255,255,.05); }
.dd-nav-link.active { color: var(--dd-accent-a); background: rgba(224,96,160,.12); border-color: rgba(224,96,160,.25); font-weight: 600; }

.dd-header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.dd-search {
  display: flex; align-items: center; gap: 9px; max-width: 320px; flex: 1;
  padding: 9px 14px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.dd-search svg { flex-shrink: 0; }
.dd-search-input {
  background: none; border: none; outline: none; width: 100%;
  color: var(--dd-text); font-size: 13.5px; font-family: inherit;
}
.dd-search-input::placeholder { color: var(--dd-muted3); }
.dd-age-badge {
  display: flex; align-items: center; gap: 7px; flex-shrink: 0;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(224,96,160,.1); border: 1px solid rgba(224,96,160,.25);
  animation: ddBadgePulse 4s ease-in-out infinite;
}
.dd-age-badge b { font-family: 'Space Grotesk'; font-weight: 700; font-size: 12px; background: var(--dd-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dd-age-badge span { font-size: 11.5px; font-weight: 600; color: #d0a8c0; }

.dd-burger { display: none; }

/* ── Section heading ─────────────────────────────── */
.dd-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.dd-kicker { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dd-accent-a); margin-bottom: 8px; }
.dd-h2 { margin: 0; font-weight: 700; font-size: 24px; }
.dd-sub { margin: 5px 0 0; font-size: 13.5px; color: var(--dd-muted3); }
.dd-seeall { font-size: 13.5px; font-weight: 600; color: var(--dd-muted); text-decoration: none; white-space: nowrap; }
.dd-seeall:hover { color: #fff; }
.dd-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.dd-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dd-accent-a); box-shadow: 0 0 8px var(--dd-accent-a); }
.dd-eyebrow-text { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dd-muted); }

.dd-page-title { margin: 0 0 6px; font-weight: 700; font-size: 34px; letter-spacing: -.03em; }
.dd-page-sub { margin: 0 0 28px; font-size: 15px; color: var(--dd-muted3); }
.dd-intro { color: var(--dd-muted); font-size: .95rem; line-height: 1.6; margin: 0 0 24px; }
.dd-intro p { margin: 0 0 .6rem; }

/* ── Hero ────────────────────────────────────────── */
.dd-hero { padding: 36px 0 12px; display: grid; grid-template-columns: 1.85fr 1fr; gap: 28px; align-items: stretch; }
.dd-hero-feature {
  position: relative; display: block; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); text-decoration: none;
  box-shadow: var(--dd-shadow); transition: box-shadow .2s;
}
.dd-hero-feature:hover { box-shadow: var(--dd-glow); }
.dd-hero-media { position: relative; aspect-ratio: 16/9; background: var(--dd-surface2); }
.dd-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,19,.92) 0%, rgba(15,15,19,.1) 55%, transparent 100%); }
.dd-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
}
.dd-play::after { content: ""; width: 0; height: 0; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.dd-play-sm { width: 46px; height: 46px; }
.dd-play-sm::after { border-left-width: 13px; border-top-width: 8px; border-bottom-width: 8px; margin-left: 4px; }
.dd-hero-body { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.dd-pill-accent { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; background: var(--dd-accent); margin-bottom: 12px; }
.dd-hero-title { margin: 0 0 8px; font-weight: 700; font-size: 28px; line-height: 1.15; max-width: 80%; }
.dd-hero-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--dd-text2); flex-wrap: wrap; }
.dd-hero-meta .dot { opacity: .4; }
.dd-dur-badge { position: absolute; top: 16px; right: 16px; font-size: 12px; font-weight: 700; padding: 5px 9px; border-radius: 7px; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); }

/* Hero side panel (ranked list) */
.dd-panel { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; }
.dd-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.dd-panel-head h3 { margin: 0; font-weight: 700; font-size: 16px; }
.dd-panel-note { margin: 4px 0 16px; font-size: 12px; color: var(--dd-muted3); }
.dd-rank-list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.dd-rank {
  display: flex; gap: 13px; align-items: center; padding: 12px; border-radius: 13px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06);
  text-decoration: none; transition: border-color .15s, background .15s;
}
.dd-rank:hover { border-color: rgba(224,96,160,.3); background: rgba(255,255,255,.05); }
.dd-rank-badge { position: relative; width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 19px; color: #fff; }
.dd-rank-num { position: absolute; top: -7px; left: -7px; width: 21px; height: 21px; border-radius: 50%; background: var(--dd-bg); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--dd-gold); }
.dd-rank-body { flex: 1; min-width: 0; }
.dd-rank-name { font-weight: 700; font-size: 14.5px; margin-bottom: 3px; color: var(--dd-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd-rank-sub { display: flex; align-items: center; gap: 7px; }
.dd-rank-stars { font-size: 12px; color: var(--dd-gold); letter-spacing: .5px; }
.dd-rank-count { font-size: 11.5px; color: var(--dd-muted3); }
.dd-rank-cta { flex-shrink: 0; padding: 8px 13px; border-radius: 9px; font-size: 12.5px; font-weight: 700; color: #fff; background: var(--dd-accent); }
.dd-panel-foot { margin-top: 14px; text-align: center; font-size: 13px; font-weight: 600; color: var(--dd-muted); text-decoration: none; padding: 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,.08); }
.dd-panel-foot:hover { color: #fff; border-color: rgba(255,255,255,.2); }

/* ── Video grid & cards ──────────────────────────── */
.dd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.dd-card { display: block; text-decoration: none; color: inherit; transition: transform .15s; }
.dd-card:hover { transform: translateY(-4px); }
.dd-card-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 13px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); background: var(--dd-surface2);
  transition: border-color .15s;
}
.dd-card:hover .dd-card-thumb { border-color: rgba(224,96,160,.35); }
.dd-card-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-card-thumb .dd-card-hover {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s;
}
.dd-card:hover .dd-card-hover { opacity: 1; }
.dd-card-badge {
  position: absolute; top: 9px; left: 9px; display: flex; align-items: center; gap: 6px;
  padding: 4px 8px 4px 5px; border-radius: 7px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
}
.dd-card-logo { width: 17px; height: 17px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 10px; color: #fff; }
.dd-card-plat { font-size: 10.5px; font-weight: 600; }
.dd-card-dur { position: absolute; bottom: 9px; right: 9px; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 6px; background: rgba(0,0,0,.65); }
.dd-card-new { position: absolute; top: 9px; right: 9px; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 6px; background: var(--dd-accent); }
.dd-card-title { margin: 11px 0 6px; font-size: 14.5px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; color: var(--dd-text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dd-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--dd-muted3); flex-wrap: wrap; }
.dd-card-meta .dot { opacity: .4; }
.dd-card-meta .plat { color: var(--dd-muted2); }

/* ── Horizontal spotlight ────────────────────────── */
.dd-spotlight { display: flex; gap: 16px; overflow-x: auto; padding: 4px 40px 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.dd-spot-card {
  scroll-snap-align: start; flex-shrink: 0; width: 290px;
  background: var(--dd-card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--dd-radius);
  padding: 18px; text-decoration: none; transition: border-color .15s, box-shadow .15s;
}
.dd-spot-card:hover { border-color: rgba(224,96,160,.35); box-shadow: var(--dd-glow); }
.dd-spot-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dd-spot-logo { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; color: #fff; flex-shrink: 0; }
.dd-spot-name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 17px; color: var(--dd-text); }
.dd-spot-rating { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.dd-spot-rating .stars { font-size: 12px; color: var(--dd-gold); }
.dd-spot-rating .val { font-size: 12px; font-weight: 700; color: var(--dd-gold); }
.dd-spot-tag { margin: 0 0 14px; font-size: 13px; line-height: 1.5; color: var(--dd-muted); min-height: 39px; }
.dd-spot-cta { display: block; text-align: center; padding: 11px; border-radius: 11px; font-size: 13.5px; font-weight: 700; color: #fff; background: var(--dd-accent); }

/* ── Editorial band ──────────────────────────────── */
.dd-band { background: var(--dd-surface); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }

/* ── Chips / tags ────────────────────────────────── */
.dd-chip { font-size: 11.5px; font-weight: 600; padding: 4px 9px; border-radius: 7px; background: var(--dd-card2); border: 1px solid rgba(255,255,255,.08); color: var(--dd-text2); text-decoration: none; }
.dd-chip:hover { border-color: rgba(224,96,160,.35); color: #fff; }
.dd-chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Filter bar (videos index) ───────────────────── */
.dd-filter { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--dd-line); }
.dd-filter-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dd-pill { padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--dd-muted); cursor: pointer; white-space: nowrap; text-decoration: none; }
.dd-pill:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.dd-pill.active { background: rgba(224,96,160,.15); border-color: rgba(224,96,160,.45); color: var(--dd-accent-a); }
.dd-sort { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.dd-sort-label { font-size: 13px; color: var(--dd-muted3); }
.dd-sort-btn { padding: 7px 13px; border-radius: 8px; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,.08); background: transparent; color: var(--dd-muted2); text-decoration: none; }
.dd-sort-btn:hover { color: #fff; }
.dd-sort-btn.active { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: var(--dd-text); }
.dd-result-label { font-size: 14px; color: var(--dd-muted3); margin-bottom: 20px; }

/* ── Pagination ──────────────────────────────────── */
.dd-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.dd-pagination a, .dd-pagination span {
  min-width: 42px; text-align: center; padding: 11px 15px; border-radius: 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--dd-text); font-size: 14px; font-weight: 600; text-decoration: none;
}
.dd-pagination a:hover { background: rgba(255,255,255,.09); border-color: rgba(224,96,160,.35); }
.dd-pagination a.current, .dd-pagination .current, .dd-pagination .active { background: var(--dd-accent); border-color: transparent; color: #fff; }
.dd-pagination .gap { background: none; border: none; color: var(--dd-muted3); }
.dd-pagination a[aria-disabled="true"], .dd-pagination .disabled { opacity: .4; pointer-events: none; }

/* ── Video show ──────────────────────────────────── */
.dd-breadcrumb { padding: 12px 0; display: flex; align-items: center; gap: 8px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.012); }
.dd-breadcrumb a { color: var(--dd-muted2); text-decoration: none; }
.dd-breadcrumb a:hover { color: var(--dd-accent-a); }
.dd-breadcrumb .sep { color: rgba(255,255,255,.2); }
.dd-breadcrumb .cur { color: var(--dd-text2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }

.dd-watch { padding: 28px 0 64px; display: grid; grid-template-columns: 1fr 368px; gap: 32px; align-items: start; }
.dd-player-wrap { position: relative; border-radius: 16px; overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 64px rgba(0,0,0,.55); }
.dd-player-wrap video, .dd-player-wrap .fluid_video_wrapper { width: 100%; display: block; border-radius: 16px; }
.dd-player-empty { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--dd-muted); }
.dd-watch-title { margin: 22px 0 14px; font-weight: 700; font-size: 26px; line-height: 1.25; letter-spacing: -.025em; color: var(--dd-text); text-wrap: pretty; }

.dd-statbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--dd-line); }
.dd-statbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: var(--dd-muted2); }
.dd-statbar-left .dot { color: rgba(255,255,255,.18); }
.dd-meta-chip { display: flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 8px; background: var(--dd-card2); border: 1px solid rgba(255,255,255,.08); color: var(--dd-text2); font-size: 12.5px; font-weight: 600; text-decoration: none; }
.dd-meta-chip:hover { border-color: rgba(224,96,160,.35); color: #fff; }
.dd-actions { display: flex; align-items: center; gap: 8px; }
.dd-action-btn { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: var(--dd-text2); font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; }
.dd-action-btn:hover { border-color: rgba(224,96,160,.35); color: #fff; }

.dd-desc { margin-top: 16px; padding: 18px; border-radius: 13px; background: var(--dd-card); border: 1px solid var(--dd-line); }
.dd-desc-body { font-size: 13.5px; line-height: 1.72; color: var(--dd-muted); }
.dd-desc-body p { margin: 0 0 .7rem; }
.dd-desc-body a { color: var(--dd-accent-a); text-decoration: none; }
.dd-desc-tags { margin-top: 14px; }

/* Sidebar */
.dd-side { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 22px; }
.dd-side-card { background: var(--dd-card); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 20px; }
.dd-side-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dd-muted2); margin-bottom: 16px; }
.dd-side-plat { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.dd-side-logo { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 24px; color: #fff; flex-shrink: 0; }
.dd-side-name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 19px; color: var(--dd-text); }
.dd-side-sub { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 13px; color: var(--dd-muted3); }
.dd-side-cta { display: block; width: 100%; text-align: center; padding: 12px; border-radius: 11px; border: none; cursor: pointer; font-size: 14px; font-weight: 700; color: #fff; background: var(--dd-accent); text-decoration: none; }
.dd-side-cta:hover { box-shadow: 0 0 24px rgba(224,96,160,.45); }
.dd-side-sub-links { display: flex; gap: 8px; margin-top: 9px; }
.dd-side-sub-link { flex: 1; text-align: center; padding: 9px; border-radius: 9px; border: 1px solid rgba(255,255,255,.09); font-size: 12.5px; font-weight: 600; color: var(--dd-muted); text-decoration: none; }
.dd-side-sub-link:hover { color: #fff; border-color: rgba(255,255,255,.2); }

.dd-upnext-title { margin: 0 0 16px; font-weight: 700; font-size: 16px; color: var(--dd-text); }
.dd-upnext { display: flex; flex-direction: column; gap: 2px; }
.dd-upnext-item { display: flex; gap: 11px; text-decoration: none; border-radius: 12px; padding: 9px; margin: 0 -9px; transition: background .15s; }
.dd-upnext-item:hover { background: rgba(255,255,255,.05); }
.dd-upnext-thumb { flex-shrink: 0; width: 130px; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.07); background: var(--dd-surface2); }
.dd-upnext-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-upnext-dur { position: absolute; bottom: 4px; right: 4px; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 5px; background: rgba(0,0,0,.65); color: var(--dd-text); }
.dd-upnext-body { flex: 1; min-width: 0; }
.dd-upnext-h { margin: 0 0 5px; font-size: 13px; font-weight: 600; line-height: 1.35; color: #e0e0e8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dd-upnext-plat { font-size: 11.5px; color: var(--dd-muted2); margin-bottom: 2px; }
.dd-upnext-views { font-size: 11.5px; color: var(--dd-muted4); }

/* Related / more rows below the watch grid */
.dd-more { padding: 0 0 48px; }
.dd-more-title { margin: 0 0 20px; font-weight: 700; font-size: 22px; }

.dd-leaderboard { display: flex; justify-content: center; padding: 22px 0; }

/* Report modal (reuses default report controller) */
.dd-report-trigger { display: inline-flex; align-items: center; gap: 6px; }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 100; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active, .modal-overlay[data-open="true"] { display: flex; }
.modal-content { background: var(--dd-surface); border: 1px solid var(--dd-line2); border-radius: 16px; padding: 24px; width: 100%; max-width: 440px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal-title { margin: 0; font-size: 18px; font-weight: 700; }
.close-modal-btn { background: none; border: none; color: var(--dd-muted); font-size: 24px; cursor: pointer; line-height: 1; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--dd-muted); }
.form-control { width: 100%; padding: 10px 12px; border-radius: 9px; background: rgba(255,255,255,.04); border: 1px solid var(--dd-line2); color: var(--dd-text); font-family: inherit; font-size: 14px; }
.form-actions { margin-top: 18px; }
.btn-primary { padding: 11px 20px; border-radius: 10px; border: none; background: var(--dd-accent); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; }

/* ── Footer ──────────────────────────────────────── */
.dd-footer { background: var(--dd-footer); border-top: 1px solid rgba(255,255,255,.06); padding: 44px 40px 30px; margin-top: 20px; flex-shrink: 0; }
.dd-footer-inner { max-width: var(--dd-maxw); margin: 0 auto; }
.dd-footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.dd-footer-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.dd-footer-brand-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--dd-accent); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 14px; color: #fff; }
.dd-footer-brand-text { font-family: 'Space Grotesk'; font-weight: 700; font-size: 18px; }
.dd-footer-blurb { margin: 0; font-size: 13px; line-height: 1.6; color: var(--dd-muted3); max-width: 280px; }
.dd-footer-coltitle { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dd-muted2); margin-bottom: 13px; }
.dd-footer-list { display: flex; flex-direction: column; gap: 9px; }
.dd-footer-list a { font-size: 13.5px; color: var(--dd-muted); text-decoration: none; }
.dd-footer-list a:hover { color: #fff; }
.dd-footer-note { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 12px; background: rgba(224,96,160,.06); border: 1px solid rgba(224,96,160,.16); margin-bottom: 24px; }
.dd-footer-note .badge { font-family: 'Space Grotesk'; font-weight: 700; font-size: 15px; padding: 7px 12px; border-radius: 9px; background: rgba(224,96,160,.14); color: #e0a8c8; flex-shrink: 0; }
.dd-footer-note p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--dd-muted); }
.dd-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; gap: 12px; }
.dd-footer-bottom span { font-size: 12.5px; color: var(--dd-muted3); }
.dd-deadbro { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; font-size: 12px; font-weight: 500; color: #d0a8c0; background: rgba(224,96,160,.06); border: 1px solid rgba(224,96,160,.16); border-radius: 8px; text-decoration: none; }
.dd-deadbro img { width: 14px; height: 14px; display: block; }

/* ── Tag cloud ───────────────────────────────────── */
.dd-tagcloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
  .dd-grid { grid-template-columns: repeat(3, 1fr); }
  .dd-watch { grid-template-columns: 1fr; }
  .dd-side { position: static; }
  .dd-hero { grid-template-columns: 1fr; }
  .dd-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .dd-header { gap: 12px; padding: 12px 18px; flex-wrap: wrap; }
  .dd-nav { display: none; }
  .dd-burger { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--dd-line2); background: rgba(255,255,255,.04); color: var(--dd-text); font-size: 13px; font-weight: 600; text-decoration: none; }
  .dd-header-right { flex: 1; }
  .dd-wrap { padding: 0 18px; }
  .dd-footer { padding: 32px 18px 24px; }
  .dd-spotlight { padding: 4px 18px 16px; }
  .dd-hero-title { font-size: 22px; max-width: 100%; }
  .dd-page-title { font-size: 26px; }
}
@media (max-width: 620px) {
  .dd-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dd-footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .dd-watch-title { font-size: 21px; }
  .dd-statbar { flex-direction: column; align-items: flex-start; }
  .dd-actions { width: 100%; }
  .dd-card-title { font-size: 13px; }
}

/* ============================================================
   REVIEWS — editorial (Article kind: review)
   ============================================================ */

/* ---- Index: featured hero ---- */
.dd-reviews-hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; margin: 18px 0 48px; }
.dd-review-feature {
  position: relative; display: block; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09); min-height: 340px; text-decoration: none;
  color: inherit; transition: border-color .18s ease;
}
.dd-review-feature:hover { border-color: rgba(224,96,160,.4); }
.dd-review-feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-review-feature-glow { position: absolute; inset: 0; background: radial-gradient(circle at 25% 40%,rgba(224,96,160,.3),transparent 55%), radial-gradient(circle at 80% 70%,rgba(155,64,216,.28),transparent 50%); }
.dd-review-feature-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,19,.96) 0%, rgba(15,15,19,.25) 55%, transparent 100%); }
.dd-review-feature-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.dd-review-feature-tags { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.dd-review-feature-date { font-size: 12px; color: #9a9aa4; }
.dd-review-feature-title { margin: 0 0 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; line-height: 1.15; letter-spacing: -.025em; max-width: 580px; }
.dd-review-feature-excerpt { margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: #b0b0b8; max-width: 540px; }
.dd-review-feature-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.dd-review-feature-rating { display: flex; align-items: center; gap: 8px; color: #f5c451; font-size: 15px; font-weight: 700; }
.dd-review-feature-cta { font-size: 14px; font-weight: 700; background: var(--dd-accent, linear-gradient(135deg,#e060a0,#9b40d8)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.dd-review-side { display: flex; flex-direction: column; gap: 16px; }
.dd-review-side-card { position: relative; flex: 1; min-height: 150px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); text-decoration: none; color: inherit; display: flex; flex-direction: column; justify-content: flex-end; transition: border-color .18s ease, transform .18s ease; }
.dd-review-side-card:hover { border-color: rgba(224,96,160,.35); transform: translateX(3px); }
.dd-review-side-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-review-side-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,19,.9) 0%, transparent 65%); }
.dd-review-side-body { position: relative; padding: 18px; }
.dd-review-side-kicker { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #c8a8f0; margin-bottom: 8px; }
.dd-review-side-title { margin: 0 0 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.25; letter-spacing: -.015em; }
.dd-review-side-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #f5c451; }
.dd-review-side-date { color: #6a6a76; margin-left: auto; }

/* ---- Index: band + grid ---- */
.dd-reviews-band { background: #16161c; border-top: 1px solid rgba(255,255,255,.06); padding: 36px 0 56px; margin-top: 8px; }
.dd-reviews-grid { grid-template-columns: repeat(3, 1fr); }

/* ---- Review card ---- */
.dd-rev-card { display: block; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.dd-rev-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.dd-rev-thumb { position: relative; aspect-ratio: 16/9; }
.dd-rev-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-rev-thumb-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,19,.5) 0%, transparent 60%); }
.dd-rev-kicker { position: absolute; top: 12px; left: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; background: rgba(15,15,19,.65); backdrop-filter: blur(6px); color: #c8a8f0; }
.dd-rev-platform { position: absolute; bottom: 12px; right: 12px; display: flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 7px; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); font-size: 10.5px; font-weight: 600; }
.dd-rev-logo { width: 16px; height: 16px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 9px; }
.dd-rev-body { padding: 20px; }
.dd-rev-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; font-size: 13px; }
.dd-rev-stars { color: #f5c451; letter-spacing: .5px; }
.dd-rev-score { font-weight: 700; color: #f5c451; }
.dd-rev-date { color: #5a5a66; margin-left: auto; }
.dd-rev-title { margin: 0 0 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.28; letter-spacing: -.01em; }
.dd-rev-excerpt { margin: 0 0 16px; font-size: 13px; line-height: 1.65; color: #8a8a96; }
.dd-rev-foot { display: flex; align-items: center; justify-content: space-between; }
.dd-rev-cta { font-size: 13.5px; font-weight: 700; background: linear-gradient(135deg,#e060a0,#9b40d8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dd-rev-readtime { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #6a6a76; }

/* ---- Show: breadcrumb + grid ---- */
.dd-rv-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #7a7a86; padding-top: 22px; }
.dd-rv-crumb-link { color: #9a9aa4; text-decoration: none; }
.dd-rv-crumb-link:hover { color: #e060a0; }
.dd-rv-crumb-sep { color: #4a4a55; }
.dd-rv-crumb-current { color: #f5f5f7; }
.dd-rv-grid { display: grid; grid-template-columns: 1fr 340px; gap: 34px; margin: 24px auto 40px; align-items: start; }
.dd-rv-main { min-width: 0; }

/* ---- Show: hero ---- */
.dd-rv-hero { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); min-height: 260px; margin-bottom: 22px; }
.dd-rv-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-rv-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,19,.97) 0%, rgba(15,15,19,.55) 60%, rgba(15,15,19,.25) 100%); }
.dd-rv-hero-body { position: relative; display: flex; gap: 18px; align-items: flex-end; padding: 26px; min-height: 260px; }
.dd-rv-hero-logo { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; }
.dd-rv-hero-text { min-width: 0; }
.dd-rv-hero-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.dd-rv-hero-date { font-size: 12px; color: #9a9aa4; }
.dd-rv-hero-title { margin: 0 0 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; line-height: 1.15; letter-spacing: -.025em; }
.dd-rv-hero-lede { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: #c0c0c8; max-width: 640px; }
.dd-rv-hero-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.dd-rv-hero-rating { display: flex; align-items: center; gap: 7px; color: #f5c451; }
.dd-rv-hero-rating strong { font-weight: 700; }
.dd-rv-hero-outof { color: #7a7a86; }
.dd-rv-hero-author { color: #a0a0aa; }

/* ---- Show: verdict ---- */
.dd-rv-verdict { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 14px; background: rgba(224,96,160,.08); border: 1px solid rgba(224,96,160,.22); margin-bottom: 22px; }
.dd-rv-verdict-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,#e060a0,#9b40d8); display: flex; align-items: center; justify-content: center; }
.dd-rv-verdict-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #e060a0; margin-bottom: 4px; }
.dd-rv-verdict-text { margin: 0; font-size: 15px; line-height: 1.6; color: #d0d0d8; }

/* ---- Show: subscores ---- */
.dd-rv-scores { padding: 20px; border-radius: 14px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.dd-rv-scores-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #8a8a96; margin-bottom: 14px; }
.dd-rv-score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 11px; }
.dd-rv-score-name { flex: 0 0 130px; font-size: 13.5px; color: #c0c0c8; }
.dd-rv-score-bar { flex: 1; height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.dd-rv-score-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg,#e060a0,#9b40d8); }
.dd-rv-score-val { flex: 0 0 34px; text-align: right; font-size: 13.5px; font-weight: 700; color: #f5c451; }

/* ---- Show: prose (Action Text body) ---- */
.dd-rv-prose { margin-bottom: 26px; }
.dd-rv-prose .trix-content, .dd-rv-prose { color: #c4c4cc; font-size: 16px; line-height: 1.75; }
.dd-rv-prose h1, .dd-rv-prose h2, .dd-rv-prose h3 { font-family: 'Space Grotesk', sans-serif; color: #f5f5f7; letter-spacing: -.015em; margin: 26px 0 12px; }
.dd-rv-prose h1 { font-size: 24px; }
.dd-rv-prose h2 { font-size: 21px; }
.dd-rv-prose h3 { font-size: 18px; }
.dd-rv-prose p { margin: 0 0 15px; }
.dd-rv-prose a { color: #e060a0; }
.dd-rv-prose ul, .dd-rv-prose ol { margin: 0 0 15px; padding-left: 22px; }
.dd-rv-prose li { margin-bottom: 6px; }
.dd-rv-prose img { max-width: 100%; height: auto; border-radius: 12px; margin: 8px 0; }
.dd-rv-prose blockquote { border-left: 3px solid #e060a0; margin: 20px 0; padding: 6px 0 6px 18px; font-size: 18px; line-height: 1.5; font-style: italic; color: #e8e8ee; }

/* ---- Show: pros & cons ---- */
.dd-rv-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.dd-rv-pros, .dd-rv-cons { padding: 18px 20px; border-radius: 14px; border: 1px solid rgba(255,255,255,.07); }
.dd-rv-pros { background: rgba(31,138,91,.08); border-color: rgba(31,138,91,.25); }
.dd-rv-cons { background: rgba(216,64,96,.07); border-color: rgba(216,64,96,.22); }
.dd-rv-pc-head { display: flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.dd-rv-pc-dot { width: 22px; height: 22px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.dd-rv-pc-dot--pro { background: rgba(31,138,91,.2); color: #35c98a; }
.dd-rv-pc-dot--con { background: rgba(216,64,96,.2); color: #f06a86; }
.dd-rv-pc-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; font-size: 14px; line-height: 1.5; color: #c4c4cc; }
.dd-rv-pc-mark { flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.dd-rv-pc-mark--pro { color: #35c98a; }
.dd-rv-pc-mark--con { color: #f06a86; }

/* ---- Show: final score ---- */
.dd-rv-final { display: flex; gap: 22px; align-items: center; padding: 24px; border-radius: 16px; background: linear-gradient(135deg, rgba(224,96,160,.1), rgba(155,64,216,.08)); border: 1px solid rgba(224,96,160,.22); margin-bottom: 24px; flex-wrap: wrap; }
.dd-rv-ring { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.dd-rv-ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dd-rv-ring-score { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; }
.dd-rv-ring-out { font-size: 11px; color: #8a8a96; }
.dd-rv-final-body { flex: 1; min-width: 200px; }
.dd-rv-final-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #e060a0; margin-bottom: 6px; }
.dd-rv-final-title { margin: 0 0 14px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; }
.dd-rv-cta { display: inline-block; padding: 12px 22px; border-radius: 11px; background: linear-gradient(135deg,#e060a0,#9b40d8); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; transition: box-shadow .18s ease; }
.dd-rv-cta:hover { box-shadow: 0 0 26px rgba(224,96,160,.45); }

/* ---- Show: sidebar ---- */
.dd-rv-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 84px; }
.dd-rv-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.025); }
.dd-rv-card-band { display: flex; align-items: center; gap: 12px; padding: 18px; }
.dd-rv-card-logo { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.dd-rv-card-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.dd-rv-card-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #f5c451; margin-top: 2px; }
.dd-rv-card-cta { padding: 16px 18px; }
.dd-rv-card-cta .dd-rv-cta { display: block; text-align: center; }
.dd-rv-facts { padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.02); }
.dd-rv-facts-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #8a8a96; margin-bottom: 12px; }
.dd-rv-fact { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.dd-rv-fact:last-child { border-bottom: none; }
.dd-rv-fact span:first-child { color: #7a7a86; }
.dd-rv-fact span:last-child { color: #e0e0e6; font-weight: 600; text-align: right; }
.dd-rv-tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.dd-rv-tier:last-child { border-bottom: none; }
.dd-rv-tier-name { font-size: 13.5px; font-weight: 600; color: #e0e0e6; }
.dd-rv-tier-note { font-size: 11.5px; font-weight: 400; color: #7a7a86; }
.dd-rv-tier-price { font-size: 13.5px; font-weight: 700; color: #e060a0; white-space: nowrap; }
.dd-rv-more { padding: 4px; }
.dd-rv-more-item { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; text-decoration: none; color: inherit; transition: background .18s ease; }
.dd-rv-more-item:hover { background: rgba(255,255,255,.05); }
.dd-rv-more-logo { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; }
.dd-rv-more-body { min-width: 0; }
.dd-rv-more-title { margin: 0 0 4px; font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.dd-rv-more-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #f5c451; }

/* ---- Reviews responsive ---- */
@media (max-width: 1000px) {
  .dd-rv-grid { grid-template-columns: 1fr; }
  .dd-rv-aside { position: static; }
  .dd-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .dd-reviews-hero { grid-template-columns: 1fr; }
  .dd-review-side { flex-direction: row; }
}
@media (max-width: 620px) {
  .dd-reviews-grid { grid-template-columns: 1fr; }
  .dd-review-side { flex-direction: column; }
  .dd-rv-proscons { grid-template-columns: 1fr; }
  .dd-rv-hero-title { font-size: 23px; }
  .dd-rv-hero-body { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dd-review-feature-title { font-size: 23px; }
}

/* ============================================================
   DIRECTORY — platform index
   ============================================================ */
.dd-dir-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-top: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; }
.dd-dir-title { margin: 0 0 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 36px; letter-spacing: -.03em; }
.dd-dir-sub { margin: 0; font-size: 15px; color: #7a7a86; max-width: 480px; line-height: 1.6; }
.dd-dir-stats { display: flex; gap: 20px; flex-shrink: 0; }
.dd-dir-stat { text-align: center; }
.dd-dir-stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; background: linear-gradient(135deg,#e060a0,#9b40d8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dd-dir-stat-label { font-size: 12px; color: #6a6a76; margin-top: 4px; }

.dd-dir-filterbar { display: flex; align-items: center; gap: 14px; padding-top: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; }
.dd-dir-filter-label { font-size: 13px; font-weight: 600; color: #6a6a76; }
.dd-dir-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.dd-dir-pill { display: inline-flex; align-items: center; gap: 6px; }
.dd-dir-filter-count { margin-left: auto; font-size: 13px; color: #5a5a66; }

.dd-dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dd-dir-card { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.dd-dir-card:hover { border-color: rgba(224,96,160,.32); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.dd-dir-logo { position: relative; flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 23px; }
.dd-dir-logo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-dir-body { flex: 1; min-width: 0; }
.dd-dir-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.dd-dir-name-wrap { min-width: 0; }
.dd-dir-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16.5px; color: #f5f5f7; text-decoration: none; }
a.dd-dir-name:hover { color: #e060a0; }
.dd-dir-new { margin-left: 8px; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 5px; background: linear-gradient(135deg,#e060a0,#9b40d8); vertical-align: middle; }
.dd-dir-rating { display: flex; align-items: center; gap: 5px; flex-shrink: 0; font-size: 13px; font-weight: 700; color: #f5c451; }
.dd-dir-rating .dd-rev-stars { font-size: 12px; }
.dd-dir-tagline { margin: 0 0 12px; font-size: 13px; line-height: 1.5; color: #8a8a96; }
.dd-dir-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.dd-dir-chip { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px; background: rgba(255,255,255,.06); color: #b0b0b8; border: 1px solid rgba(255,255,255,.1); }
.dd-dir-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dd-dir-price-num { font-size: 14px; font-weight: 700; color: #f5f5f7; }
.dd-dir-price-per { font-size: 12px; color: #5a5a66; }
.dd-dir-free { margin-left: 8px; font-size: 11px; font-weight: 600; color: #6adaaa; }
.dd-dir-visit { padding: 8px 14px; border-radius: 8px; background: linear-gradient(135deg,#e060a0,#9b40d8); color: #fff; font-size: 12.5px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: box-shadow .18s ease; }
.dd-dir-visit:hover { box-shadow: 0 0 16px rgba(224,96,160,.5); }

.dd-dir-empty { text-align: center; padding: 80px 40px; }
.dd-dir-empty-icon { font-size: 44px; margin-bottom: 16px; }
.dd-dir-empty-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.dd-dir-empty-sub { font-size: 14px; color: #6a6a76; }

@media (max-width: 1000px) { .dd-dir-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .dd-dir-grid { grid-template-columns: 1fr; }
  .dd-dir-title { font-size: 28px; }
  .dd-dir-stats { gap: 14px; }
  .dd-dir-filter-count { margin-left: 0; width: 100%; }
}

