:root {
  --bg: #5a5f66;
  --panel: #6a7078;
  --panel-deep: #4c5158;
  --ink: #f2f3f5;
  --ink-dim: #c3c8ce;
  --ink-mute: #9aa1a9;
  --brick: #a8452f;
  --brick-deep: #7e3322;
  --ginger: #c98a2b;
  --seoul-blue: #5c7186;
  --seoul-mist: #dfe3e6;
  --warm: #e0763a;
  --line: #858c94;
  --radius: 10px;
  --radius-lg: 16px;
  --gap: 10px;
  --mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", "Noto Sans Mono CJK SC", monospace;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
}
.site-header {
  background: var(--panel-deep);
  border-bottom: 2px solid var(--brick);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--ginger);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--warm);
  text-decoration: underline;
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  color: var(--seoul-mist);
  background: rgba(92, 113, 134, 0.35);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 13px;
  text-decoration: none;
}
a.runtime-category:hover {
  color: #fff;
  background: var(--brick);
  border-color: var(--brick);
  text-decoration: none;
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-collage {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 10px;
  align-items: start;
  min-height: 210px;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
}
.hero-half-northeast {
  left: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 138, 43, 0.55), transparent 60%),
    linear-gradient(160deg, var(--brick) 0%, var(--brick-deep) 55%, #6b2a1c 100%);
}
.hero-half-seoul {
  right: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(223, 227, 230, 0.35), transparent 62%),
    linear-gradient(200deg, var(--seoul-blue) 0%, #3f4f5e 60%, #2f3b46 100%);
}
.hero-split-mark {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 44px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.split-mark-jar, .split-mark-basket {
  width: 30px;
  height: 34px;
  border-radius: 8px 8px 12px 12px;
  border: 2px solid rgba(242, 243, 245, 0.75);
}
.split-mark-jar {
  background: linear-gradient(180deg, #d5732c 0%, #8f3f1c 100%);
}
.split-mark-basket {
  background: linear-gradient(180deg, #b98a4e 0%, #6f5430 100%);
  border-radius: 6px 6px 14px 14px;
}
.poster-wrapper {
  position: relative;
  z-index: 2;
  justify-self: start;
  align-self: start;
  width: 100%;
  max-width: 190px;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(242, 243, 245, 0.55);
  background: var(--panel-deep);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-title-block {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 100%;
  padding: 12px 14px;
  background: rgba(76, 81, 88, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.movie-title {
  font-size: clamp(20px, 3.4vw, 30px);
  letter-spacing: 0.01em;
  color: #fff;
}
.movie-tagline {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ginger);
  border-left: 3px solid var(--brick);
  padding-left: 9px;
}
.hero-player-wide {
  width: 100%;
  min-width: 0;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-player-wide video {
  display: block;
  border-radius: 6px;
  background: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.player-btn {
  flex: 0 0 auto;
  background: var(--seoul-blue);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12.5px;
  cursor: pointer;
}
.player-btn:hover {
  background: #6d8399;
}
.player-btn-play {
  background: var(--brick);
  border-color: var(--brick-deep);
  font-weight: 700;
}
.player-btn-play:hover {
  background: var(--warm);
}
.player-btn.is-playing {
  background: var(--ginger);
  border-color: #8f6115;
  color: #241a06;
}
.player-btn.is-active, .player-btn.is-muted {
  background: var(--ginger);
  border-color: #8f6115;
  color: #241a06;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: #343a41;
  border: 1px solid var(--line);
  cursor: pointer;
}
.player-range-progress {
  flex: 1 1 160px;
  min-width: 120px;
}
.player-range-volume {
  flex: 0 1 100px;
  min-width: 70px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ginger);
  border: 2px solid #2f333a;
}
.player-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #2f333a;
  border-radius: 50%;
  background: var(--ginger);
}
.player-range-progress::-webkit-slider-thumb {
  background: var(--brick);
}
.player-range-progress::-moz-range-thumb {
  background: var(--brick);
}
.hero-meta-strip {
  width: 100%;
}
.meta-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.meta-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  color: var(--ink-mute);
  white-space: nowrap;
}
.meta-value {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 700;
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.overview-block {
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
}
.block-heading, .section-heading, .recommend-heading {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--brick);
  display: inline-block;
}
.section-heading {
  font-size: 16px;
  display: block;
  border-bottom: 2px solid var(--brick);
}
.synopsis-block {
  grid-column: 1;
}
.synopsis-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synopsis-line {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-dim);
  text-align: justify;
}
.cast-block {
  grid-column: 1;
}
.episode-status-block {
  grid-column: 2;
}
.details-block {
  grid-column: 2;
  grid-row: 1;
}
.cast-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.cast-card {
  flex: 0 0 auto;
  width: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 5px;
}
.cast-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--ginger);
  background:
    radial-gradient(circle at 50% 34%, #cfd4d9 0%, #cfd4d9 26%, transparent 27%),
    radial-gradient(circle at 50% 96%, #8b959f 0%, #8b959f 46%, transparent 47%),
    linear-gradient(180deg, var(--seoul-blue), #414f5c);
}
.cast-name {
  font-size: 12px;
  color: var(--ink-dim);
  text-align: center;
  white-space: nowrap;
}
.status-line {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.status-progress {
  height: 10px;
  border-radius: 999px;
  background: #343a41;
  border: 1px solid var(--line);
  overflow: hidden;
}
.status-progress-filled {
  display: block;
  width: 62.5%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brick) 0%, var(--ginger) 100%);
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(154, 161, 169, 0.35);
  font-size: 12.5px;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-key {
  flex: 0 0 62px;
  color: var(--ink-mute);
  white-space: nowrap;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px;
}
.timeline-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px 12px;
}
.timeline-filmstrip {
  position: relative;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(52, 58, 65, 0.85) 0 2px,
      transparent 2px 14px
    );
  border-radius: var(--radius);
}
.timeline-track {
  display: flex;
  gap: 9px;
  padding: 9px;
  min-width: max-content;
}
.timeline-cell {
  flex: 0 0 auto;
  width: 150px;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.timeline-timecode {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ginger);
  letter-spacing: 0.04em;
}
.timeline-label {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.episodes-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px 12px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.episode-odd {
  border-left-color: var(--brick);
}
.episode-even {
  border-left-color: var(--seoul-blue);
}
.episode-title {
  font-size: 13.5px;
  color: var(--ink);
}
.episode-summary {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ginger);
}
.comments-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px 12px;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-card {
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
}
.comment-nickname {
  font-size: 13px;
  color: var(--warm);
  margin-bottom: 5px;
}
.comment-divider {
  height: 1px;
  background: rgba(154, 161, 169, 0.5);
  margin-bottom: 6px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.recommend-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px 12px;
}
.recommend-heading {
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--ginger);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
a.recommend-item:hover {
  border-color: var(--ginger);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: #343a41;
}
.recommend-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  background: var(--panel-deep);
  border-top: 2px solid var(--brick);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--seoul-mist);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--ginger);
  border-bottom-color: var(--ginger);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  align-items: center;
  max-width: 980px;
}
.friend-links-label {
  font-size: 12px;
  color: var(--ink-mute);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--ink-dim);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(154, 161, 169, 0.6);
}
a.runtime-friend-link:hover {
  color: var(--warm);
  border-bottom-color: var(--warm);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 900px;
}
.player {
  position: relative;
}
.player.is-theater, .hero-player-wide.is-theater {
  background: #23272c;
  border-color: var(--ginger);
}
.is-lights-off {
  background: #2b2f34;
}
.is-lights-off .page-main {
  filter: brightness(0.72);
}
.is-lights-off .hero-player-wide {
  filter: brightness(1.12);
}
.click, .input, .progress, .timeupdate, .volume {
  outline: none;
}
.speed, .theater, .light, .mute, .pip, .play, .fullscreen {
  outline: none;
}
.x {
  border: none;
  background: none;
}
@media (max-width: 960px) {.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.synopsis-block, .cast-block, .episode-status-block, .details-block {
    grid-column: 1;
    grid-row: auto;
  }
.details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }
.comments-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 760px) {.hero-visual {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
.poster-wrapper {
    max-width: 150px;
  }
.hero-split-mark {
    width: 30px;
  }
.split-mark-jar, .split-mark-basket {
    width: 22px;
    height: 26px;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-row {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.player-range-progress {
    flex: 1 1 100%;
  }}
@media (max-width: 520px) {.page-main {
    padding: 10px 10px 20px;
  }
.header-inner {
    padding: 8px 10px;
    gap: 8px;
  }
.movie-title {
    font-size: 19px;
  }
.recommend-row {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-cell {
    width: 132px;
  }
.cast-card {
    width: 74px;
  }
.cast-avatar {
    width: 46px;
    height: 46px;
  }
.player-btn {
    padding: 4px 9px;
    font-size: 12px;
  }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
