:root {
  --bg: #0f1419; --panel: #161c24; --border: #263040; --text: #e8ecf1; --muted: #a3a9b7;
  --accent: #4f8cff; --accent-hover: #6a9dff; --gold: #f0c878;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-image: radial-gradient(ellipse 90% 55% at 50% -15%, rgba(79,140,255,.18), transparent 55%);
}
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: 62rem; margin: 0 auto; padding: 0.9rem 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.wordmark { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 700; letter-spacing: .01em; }
.wm-a { color: var(--text); } .wm-b { color: var(--gold); }
.brand-tag { color: var(--muted); font-size: .85rem; margin-left: .25rem; }
.site-nav { display: flex; gap: 1.1rem; font-size: .95rem; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--text); }
main.story { max-width: 62rem; margin: 0 auto; padding: 0.5rem 1.25rem 3rem; }
.hero { display: grid; grid-template-columns: minmax(0, 17rem) minmax(0, 1fr); gap: 2rem; align-items: start;
  padding: 1.25rem 0 1.5rem; }
.cover { margin: 0; }
.cover img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.45); display: block; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.15; margin: 0 0 .35rem; }
.byline { margin: 0 0 .3rem; font-size: 1.05rem; color: var(--gold); }
.meta, .hint, .fine, .lead { color: var(--muted); }
.meta { margin: 0 0 1.25rem; font-size: .95rem; }
.play { display: inline-block; padding: .85rem 1.5rem; border-radius: 10px; background: var(--accent); color: #fff;
  font-weight: 700; font-size: 1.05rem; text-decoration: none; box-shadow: 0 8px 22px rgba(79,140,255,.35); }
.play:hover { background: var(--accent-hover); color: #fff; }
.sample-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin: 1rem 0 0; color: var(--muted); }
.play-small { padding: .5rem 1rem; font-size: .92rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(79,140,255,.3); }
.hint { margin: .7rem 0 0; font-size: .88rem; }
.also { margin: 1rem 0 0; font-size: .95rem; }
.also span { color: var(--muted); }
.section { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.section h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; margin: 0 0 .6rem; }
.section p { max-width: 46rem; }
.cast { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.cast li { padding: .3rem .8rem; border: 1px solid var(--border); border-radius: 999px; background: var(--panel); font-size: .92rem; }
details { border: 1px solid var(--border); border-radius: 10px; background: var(--panel); padding: .55rem .9rem; margin: .5rem 0; max-width: 46rem; }
summary { cursor: pointer; font-weight: 600; }
details p { margin: .5rem 0 .2rem; }
.video { position: relative; aspect-ratio: 16 / 9; max-width: 46rem; border-radius: 12px; overflow: hidden; background: #000; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .75rem; }
.card { display: grid; justify-items: center; gap: .3rem; padding: .8rem .6rem; border: 1px solid var(--border); border-radius: 12px;
  background: var(--panel); color: var(--text); text-decoration: none; text-align: center; height: 100%; }
.card:hover { border-color: var(--accent); color: var(--text); }
.card-cover { position: relative; display: inline-block; }
.card img { border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,.4); width: 72px; height: 96px; object-fit: cover; display: block; }
.card-lg img { width: 96px; height: 128px; }
.badge { position: absolute; right: -6px; bottom: -6px; padding: .1rem .45rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  background: #2a3342; color: var(--text); border: 1px solid var(--border); }
.badge-free { background: var(--gold); color: #1a1408; border-color: transparent; }
.cast-more { color: var(--muted); border-style: dashed; }
.index-h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; margin: 2rem 0 .75rem; }
.notice { margin: 0 0 1rem; padding: .6rem .9rem; border-radius: 8px; border: 1px solid rgba(217,164,65,.55); background: rgba(217,164,65,.14); color: var(--text); }
.notice[hidden] { display: none; }
.card-title { font-weight: 600; line-height: 1.3; }
.card-meta { font-size: .8rem; color: var(--muted); }
.cards-index { margin-top: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); }
.cta-bottom { margin-top: 2rem; text-align: center; }
.site-footer { max-width: 62rem; margin: 0 auto; padding: 1.5rem 1.25rem 2.5rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .88rem; }
.site-footer a { color: var(--muted); }
.fine { font-size: .82rem; }
@media (max-width: 700px) {
  .brand-tag { display: none; }
  .hero { grid-template-columns: 1fr; gap: 1.25rem; }
  .cover { max-width: 14rem; margin: 0 auto; }
  .hero-text { text-align: center; }
  .cast { justify-content: center; }
}
