*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: #07080c;
  color: #c9ccd6;
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.55) 0px,
    rgba(255, 255, 255, 0.55) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol, dl, dd, p, h1, h2, h3 {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
h1, h2, h3, .brand, .movie-title, .episodes-heading, .cast-heading, .timeline-heading, .comments-heading, .recommend-heading, .synopsis-heading, .details-heading {
  font-family: "Haettenschweiler", "Impact", "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #eef0f5;
  line-height: 1.14;
}
.timeline-timecode, .episode-number, .episode-duration, .episode-detail-duration, .status-total, .status-current, .details-row dd, .details-row dt {
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: rgba(7, 8, 12, 0.94);
  border-bottom: 1px solid #1a1f2e;
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 18px;
}
a[data-contract="site-name"] {
  color: #eef0f5;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-right: 14px;
  border-right: 2px solid #8c2f22;
  white-space: nowrap;
}
.category-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: #9aa1b4;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  padding: 3px 10px;
  border: 1px solid #232a3d;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover {
  color: #eef0f5;
  border-color: #8c2f22;
}
.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
  gap: 20px;
  border: 1px solid #1a1f2e;
  background-color: #0a0c14;
  padding: 16px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.hero-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid #232a3d;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
}
.hero-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 22px 14px 12px;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #e7e2d8;
  background: linear-gradient(180deg, rgba(6, 7, 11, 0) 0%, rgba(6, 7, 11, 0.86) 46%, rgba(6, 7, 11, 0.97) 100%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.movie-title {
  font-size: 34px;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a1f2e;
  position: relative;
}
.movie-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 74px;
  height: 2px;
  background-color: #8c2f22;
}
.seo-description {
  font-size: 13px;
  line-height: 1.62;
  color: #8e95a8;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid #232a3d;
  background-color: #05060a;
}
.player-shell video {
  display: block;
  width: 100%;
  background-color: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 8px;
  border-top: 1px solid #1a1f2e;
  background-color: #0b0e18;
}
.player-controls button {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #9aa1b4;
  padding: 3px 9px;
  border: 1px solid #232a3d;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.player-controls button:hover {
  color: #eef0f5;
  border-color: #3a4256;
}
.player-controls button.is-active {
  color: #f0dcd6;
  border-color: #8c2f22;
  background-color: rgba(140, 47, 34, 0.22);
}
.player-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background-color: #232a3d;
  border-radius: 0;
  outline: none;
}
.player-controls input[data-player-action="progress"] {
  flex: 1 1 140px;
  min-width: 80px;
}
.player-controls input[data-player-action="volume"] {
  flex: 0 1 88px;
  min-width: 56px;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background-color: #8c2f22;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background-color: #8c2f22;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px #8c2f22;
}
.player-shell.is-lights-off {
  background-color: #000;
}
.player-shell.is-lights-off video {
  filter: brightness(0.72);
}
.episode-status {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding: 6px 10px;
  border-left: 3px solid #8c2f22;
  background-color: rgba(140, 47, 34, 0.09);
}
.status-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #8e95a8;
}
.status-current {
  font-size: 17px;
  font-weight: 700;
  color: #c8563f;
  letter-spacing: 0.05em;
}
.status-total {
  font-size: 12px;
  color: #6f778c;
  letter-spacing: 0.05em;
}
.cast {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #1a1f2e;
}
.cast-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #aeb4c4;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  position: relative;
  padding: 6px;
  border: 1px solid #1a1f2e;
  background-color: #0c0f19;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: border-color 0.15s ease;
}
.cast-card:hover {
  border-color: #8c2f22;
}
.cast-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.88) contrast(1.05);
  border: 1px solid #232a3d;
}
.cast-name {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #e4e7ee;
  letter-spacing: 0.04em;
}
.cast-role {
  font-size: 11px;
  color: #8c2f22;
  color: #b0604c;
  letter-spacing: 0.04em;
}
.cast-relation {
  font-size: 11px;
  line-height: 1.45;
  color: #7d8598;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin-top 0.2s ease;
}
.cast-card:hover .cast-relation {
  max-height: 72px;
  opacity: 1;
  margin-top: 4px;
}
.synopsis {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #1a1f2e;
}
.synopsis-heading, .details-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #aeb4c4;
}
.synopsis p {
  font-size: 13px;
  line-height: 1.68;
  color: #9aa1b4;
}
.details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #1a1f2e;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(35, 42, 61, 0.7);
}
.details-row dt {
  flex: 0 0 76px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #6f778c;
}
.details-row dd {
  font-size: 12px;
  color: #c9ccd6;
  letter-spacing: 0.02em;
}
.timeline {
  border: 1px solid #1a1f2e;
  background-color: #0a0c14;
  padding: 12px 16px 16px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.timeline-heading {
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1f2e;
  position: relative;
}
.timeline-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background-color: #8c2f22;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 1px;
  background-color: #2a3145;
}
.timeline-node {
  position: relative;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #8c2f22;
}
.timeline-node:nth-child(even) {
  padding-top: 30px;
}
.timeline-node:nth-child(even)::before {
  top: 14px;
}
.timeline-timecode {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #b0604c;
}
.timeline-label {
  font-size: 13px;
  color: #d2d6e0;
  letter-spacing: 0.03em;
}
.episodes {
  border: 1px solid #1a1f2e;
  background-color: #0a0c14;
  padding: 12px 16px 16px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.episodes-heading {
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1f2e;
  position: relative;
}
.episodes-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background-color: #8c2f22;
}
.episodes-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 18px;
  align-items: start;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.episode-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(35, 42, 61, 0.7);
  min-width: 0;
}
.episode-number {
  flex: 0 0 48px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6f778c;
}
.episode-title {
  flex: 1 1 auto;
  font-size: 13px;
  color: #d2d6e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-duration {
  flex: 0 0 auto;
  font-size: 11px;
  color: #6f778c;
  letter-spacing: 0.04em;
}
.episode-item:first-child .episode-number, .episode-item:first-child .episode-title {
  color: #c8563f;
}
.episode-detail {
  border: 1px solid #232a3d;
  border-left: 3px solid #8c2f22;
  background-color: #0c0f19;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.episode-detail-title {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #eef0f5;
}
.episode-detail-summary {
  font-size: 13px;
  line-height: 1.62;
  color: #9aa1b4;
}
.episode-detail-duration {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #b0604c;
}
.comments {
  border: 1px solid #1a1f2e;
  background-color: #0a0c14;
  padding: 12px 16px 16px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.comments-heading {
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1f2e;
  position: relative;
}
.comments-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background-color: #8c2f22;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
}
.comment-card {
  padding: 9px 0;
  border-bottom: 1px solid rgba(35, 42, 61, 0.65);
  background-image: linear-gradient(90deg, rgba(140, 47, 34, 0.09), rgba(140, 47, 34, 0) 62%);
  padding-left: 10px;
  border-left: 2px solid rgba(140, 47, 34, 0.5);
}
.comment-nickname {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #b0604c;
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: #9aa1b4;
}
.recommend-region {
  border: 1px solid #1a1f2e;
  background-color: #0a0c14;
  padding: 10px 14px 14px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.recommend-heading {
  font-size: 14px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1a1f2e;
  position: relative;
  color: #aeb4c4;
}
.recommend-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background-color: #8c2f22;
}
.recommend-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #9aa1b4;
  text-decoration: none;
  padding: 6px;
  border: 1px solid #1a1f2e;
  background-color: #0c0f19;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: border-color 0.15s ease;
  min-width: 0;
}
a.recommend-card:hover {
  border-color: #8c2f22;
  color: #d2d6e0;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 1px solid #232a3d;
  filter: brightness(0.86) contrast(1.05);
}
a.recommend-card [data-runtime="name"] {
  font-size: 13px;
  font-weight: 700;
  color: #dfe3ea;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.recommend-card [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.5;
  color: #7d8598;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 18px 26px;
  border-top: 1px solid #1a1f2e;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: #6f778c;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #9aa1b4;
  text-decoration: none;
  padding: 3px 0;
  border-bottom: 1px solid #232a3d;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #c8563f;
  border-color: #8c2f22;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(35, 42, 61, 0.6);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6f778c;
  padding-right: 8px;
  border-right: 1px solid #232a3d;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #7d8598;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: #c8563f;
}
@media (max-width: 1080px) {.hero-shell {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  }
.cast-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track::before {
    display: none;
  }}
@media (max-width: 820px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster {
    aspect-ratio: 2 / 3;
    max-width: 340px;
  }
.episodes-layout {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 620px) {.page-main {
    padding: 12px 12px 8px;
    gap: 12px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 17px;
  }
.movie-title {
    font-size: 26px;
  }
.hero-shell, .timeline, .episodes, .comments, .recommend-region {
    padding: 12px;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 12px 12px 22px;
  }}
@media (max-width: 400px) {.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

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}
