:root {
  --bg: #09090b;
  --bg-2: #0c0c0f;
  --surface: #18181b;
  --surface-2: #1c1c20;
  --border: #27272a;
  --text: #fafafa;
  --muted: #a1a1aa;
  --faint: #71717a;
  --pink: #f472b6;
  --pink-hot: #db2777;
  --pink-ink: #fff;
  --pink-dim: rgba(236, 72, 153, 0.16);
  --focus: #f9a8d4;
  --max: 70rem;
  --nav-h: 3.85rem;
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

html:not(.age-ok) {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 1.0125rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pink);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f9a8d4;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 80;
  padding: 0.4rem 0.7rem;
  background: var(--surface);
  color: var(--text);
}

.skip:focus {
  top: 0.75rem;
}

/* Age gate — no photos, no adult copy */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #050505;
  color: #e4e4e7;
}

html.age-ok #age-gate {
  display: none;
}

html:not(.age-ok) #site {
  visibility: hidden;
}

.gate-card {
  width: min(28rem, 100%);
  text-align: center;
}

.gate-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.gate-card h1 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 650;
}

.gate-card p {
  margin: 0 0 1.5rem;
  color: #d4d4d8;
  font-size: 0.98rem;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gate-actions .btn {
  width: 100%;
}

/* Layout */
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(244, 114, 182, 0.18);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 0.75rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  color: var(--text);
}

.brand-en {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.brand-ja {
  font-size: 0.7rem;
  color: #e4e4e7;
  letter-spacing: 0.14em;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.nav-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  padding: 0.75rem 1rem 1rem;
  background: #0a0a0c;
  border-bottom: 1px solid var(--border);
}

.nav-panel.is-open {
  display: block;
}

.nav-panel a {
  display: block;
  padding: 0.7rem 0.2rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-panel a:hover {
  color: var(--pink);
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-panel a {
    display: inline;
    padding: 0;
    border: 0;
    font-size: 0.9rem;
    color: var(--muted);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink-hot);
  color: var(--pink-ink);
}

.btn-primary:hover {
  background: #be185d;
  color: var(--pink-ink);
}

.btn-hot {
  background: var(--pink-hot);
  color: #fff;
  min-height: 3.15rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.05rem;
  box-shadow: 0 12px 40px rgba(219, 39, 119, 0.35);
}

.btn-hot:hover {
  background: #be185d;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: #3f3f46;
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

/* Cinematic poster hero */
.cinema {
  position: relative;
  min-height: min(88vh, 54rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.cinema-still {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.cinema-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: ken 28s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-still img {
    animation: none;
  }
}

.cinema-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, rgba(0, 0, 0, 0.88) 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.55);
}

.cinema-copy {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 2.75rem;
  max-width: 40rem;
}

.cinema-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}

.cinema-ja {
  margin: 0 0 0.2rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  letter-spacing: 0.28em;
  font-weight: 500;
}

.cinema h1 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.cinema .lede {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: #e4e4e7;
}

.cinema .price-line {
  color: #f4f4f5;
}

.cinema .fine {
  color: #a1a1aa;
}

.facts-split {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.facts-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.facts-photo img {
  display: block;
  width: 100%;
  height: 26rem;
  object-fit: cover;
  object-position: center 18%;
}

@media (min-width: 800px) {
  .facts-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.25rem;
  }

  .facts-photo img {
    height: 32rem;
  }
}

body.home {
  background:
    radial-gradient(90% 50% at 80% 0%, rgba(219, 39, 119, 0.12), transparent 55%),
    var(--bg);
}

.section {
  padding: 2.75rem 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
}

.section .sub {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.offer {
  padding: 1.25rem;
  border: 1px solid #3f3f46;
  border-radius: 1rem;
  background: var(--surface);
}

.offer-primary {
  border-color: #3f3f46;
  background: var(--surface);
}

.offer h2,
.offer h3 {
  margin: 0 0 0.4rem;
}

.price-line {
  margin: 0 0 0.75rem;
  color: var(--text);
}

.fine {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.direct-row {
  display: grid;
  gap: 0.75rem;
}

.direct-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(244, 114, 182, 0.28);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(244, 114, 182, 0.08), var(--surface) 42%);
  text-decoration: none;
  color: var(--text);
  text-align: center;
}

.direct-card:hover {
  border-color: var(--pink);
  color: var(--text);
  transform: translateY(-2px);
}

.direct-card strong {
  color: var(--pink);
  font-size: 1.15rem;
}

.support-javhd {
  margin: 1.1rem 0 0;
}

@media (min-width: 640px) {
  .direct-row {
    grid-template-columns: 1fr 1fr;
  }

  .gate-actions {
    flex-direction: row;
    justify-content: center;
  }

  .gate-actions .btn {
    width: auto;
    min-width: 10rem;
  }
}

/* Cards / facts */
.cards {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-cover,
.cover-frame,
.title-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.65rem;
  background: #121216;
  margin: 0 0 0.75rem;
}

.cover-frame.is-empty {
  border: 1px dashed #3a3a42;
  min-height: 10rem;
}

.title-cover {
  max-width: 14rem;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.card:hover {
  border-color: rgba(244, 114, 182, 0.4);
}

.card h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--pink);
}

.kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: #a1a1aa;
}

.facts em {
  font-style: normal;
  color: var(--faint);
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.card .btn {
  margin-top: auto;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  font-size: 0.92rem;
}

.facts span {
  display: block;
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prose {
  max-width: 40rem;
}

.prose p {
  margin: 0 0 0.9rem;
  color: #d4d4d8;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: #121214;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

code,
.mono {
  font-family: var(--mono);
}

/* Pay box */
.pay {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--bg-2);
}

.pay .amount {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.wallet {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: #000;
}

.wallet-addr {
  margin: 0 0 0.7rem;
  word-break: break-all;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.placeholder {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px dashed #3f3f46;
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Forms */
form {
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text);
}

.consent input {
  margin-top: 0.25rem;
}

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #3f3f46;
  border-radius: 0.6rem;
  background: #0a0a0c;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Title index */
.title-list {
  display: grid;
  gap: 0.55rem;
}

.title-row {
  display: grid;
  gap: 0.2rem 1rem;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.title-row:hover {
  color: var(--text);
}

.title-row .code {
  font-family: var(--mono);
  color: #d4d4d8;
  font-size: 0.82rem;
}

.title-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 720px) {
  .title-row {
    grid-template-columns: 8.5rem 1fr auto;
    align-items: baseline;
  }
}

/* Legal */
.legal h1 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
}

.legal p,
.legal li {
  color: #d4d4d8;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 2.4rem 0 2.8rem;
  border-top: 1px solid rgba(244, 114, 182, 0.16);
  background: #000;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0 0 0.65rem;
}

.foot-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0.9rem 0;
  padding: 0;
  list-style: none;
}

.socials-label {
  margin: 1rem 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Public post stream — official embeds, mounted after age gate */
.stream-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .stream-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.stream-col {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.stream-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.85rem 1rem 0.7rem;
  border-bottom: 1px solid var(--border);
}

.stream-head h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.stream-head a {
  font-size: 0.82rem;
  color: var(--muted);
}

.stream-mount {
  min-height: 36rem;
  background: #0b0b0e;
}

.stream-mount .twitter-timeline,
.stream-mount .instagram-media,
.stream-mount .tiktok-embed,
.stream-mount iframe {
  margin: 0 !important;
  width: 100% !important;
}

.stream-mount iframe {
  min-height: 36rem;
  border: 0;
  display: block;
}

.stream-fallback {
  min-height: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.6rem 1.25rem;
  background: var(--surface);
  color: var(--text);
}

.stream-fallback-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stream-fallback p {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
}

.stream-fallback .btn {
  margin-top: 0.35rem;
}

/* Exit (safe) */
body.exit {
  background: #f4f4f5;
  color: #18181b;
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-family: var(--sans);
}

body.exit p {
  margin: 0;
  color: #52525b;
}

/* 404 */
.empty h1 {
  margin: 2.5rem 0 0.5rem;
  font-size: 1.8rem;
}

.grain {
  pointer-events: none;
}

body.home #site::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

/* Analytics stub left in HTML comments */

/* Guide / unlock database register */
body.db {
  --bg: #0d0d0f;
  --bg-2: #101014;
  --surface: #16161a;
  --border: #2a2a30;
  --text: #e8e8ec;
  --muted: #9a9aa3;
  --gold: #c9a227;
  --ok: #3dd68c;
  --radius: 10px;
  background: var(--bg);
  color: var(--text);
}

body.db .site-header {
  background: rgba(13, 13, 15, 0.94);
  border-color: var(--border);
}

body.db a {
  color: #d8d8de;
}

body.db a:hover {
  color: #fff;
}

body.db .btn-primary {
  background: var(--gold);
  color: #0d0d0f;
}

body.db .btn-primary:hover {
  background: #ddb83a;
  color: #0d0d0f;
}

body.db .btn-ghost {
  border-color: var(--border);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
}

.pill {
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.pill.is-on,
.pill[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.result-count {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.act-grid {
  display: grid;
  gap: 0.85rem;
}

.act-card {
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius, 10px);
  background: var(--surface);
}

.act-card[hidden] {
  display: none;
}

.act-card.is-pending {
  border-style: dashed;
  opacity: 0.72;
  background: #121216;
}

.act-code {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.act-meta {
  margin: 0.15rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.act-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  line-height: 1.35;
}

.act-card p {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
}

.act-official,
.act-thumb {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.55rem 0 !important;
}

.tag {
  display: inline-block;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.act-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem !important;
}

.access-badge {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(61, 214, 140, 0.12);
  color: var(--ok);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.unverified {
  color: var(--muted);
}

.mode-set {
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
}

.mode-set legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

body.db .pay {
  border-color: var(--border);
  background: #101014;
}

.card-request {
  margin: 1rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 860px) {
  .act-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Soft-parked guide sales + title index CTAs (2026-09 revenue honesty pass) */
.hero-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
}

.pay.is-paused {
  opacity: 0.92;
}

.pay.is-paused .amount {
  display: none;
}

.paused-details {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px dashed var(--border);
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.paused-details summary {
  cursor: pointer;
  color: var(--fg);
  font-weight: 600;
}

.paused-details[open] summary {
  margin-bottom: 0.75rem;
}

.title-row-card {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.title-row-card .act-actions {
  margin-top: 0.5rem;
}

.scene-unlock-row{display:flex;flex-wrap:wrap;gap:.6rem;margin:1rem 0;}

.uncensored-list{list-style:disc;padding-left:1.2rem;line-height:1.55;}
.uncensored-badge{font-size:.75rem;text-transform:uppercase;letter-spacing:.04em;padding:.1rem .4rem;border-radius:.35rem;border:1px solid var(--border);}
.uncensored-badge.is-yes{color:#86efac;border-color:#166534;}
.uncensored-badge.is-no{color:#fca5a5;border-color:#7f1d1d;}
.uncensored-badge.is-unknown{color:#fde68a;border-color:#854d0e;}
