:root {
  --smoke-orange: #e8743a;
  --smoke-orange-deep: #c4551f;
  --smoke-orange-soft: #f0a06a;
  --alley-blue: #3d4f63;
  --alley-blue-deep: #232e3b;
  --alley-blue-soft: #5a6d82;
  --char-ash: #1a1d22;
  --char-ash-2: #232830;
  --char-ash-3: #2c323b;
  --paper-warm: #e8e2d8;
  --paper-dim: #b8b2a8;
  --paper-mute: #8a857c;
  --line-faint: rgba(232, 116, 58, 0.18);
  --line-blue: rgba(90, 109, 130, 0.28);
  --gap-tight: 0.5rem;
  --gap: 0.85rem;
  --gap-wide: 1.4rem;
  --radius: 4px;
  --font-stack: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--char-ash);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 0%, rgba(232, 116, 58, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 95% 30%, rgba(61, 79, 99, 0.22), transparent 55%),
    linear-gradient(180deg, #1a1d22 0%, #1d2128 40%, #1a1d22 100%);
  color: var(--paper-warm);
  font-family: var(--font-stack);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
video {
  display: block;
  max-width: 100%;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-tight) var(--gap);
  padding: 0.55rem 1rem;
  background: linear-gradient(180deg, rgba(26, 29, 34, 0.98), rgba(35, 40, 48, 0.92));
  border-bottom: 1px solid var(--line-faint);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
}
a[data-contract="site-name"] {
  color: var(--smoke-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
a[data-contract="site-name"]:hover {
  color: var(--smoke-orange-soft);
  text-decoration: none;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.4rem;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 0.18rem 0.5rem;
  font-size: 0.78rem;
  color: var(--paper-dim);
  text-decoration: none;
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  background: rgba(61, 79, 99, 0.12);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover {
  color: var(--smoke-orange);
  border-color: var(--smoke-orange);
  background: rgba(232, 116, 58, 0.1);
  text-decoration: none;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-heading {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--smoke-orange);
  padding-left: 0.55rem;
  border-left: 3px solid var(--smoke-orange);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "poster headline"
    "player player"
    "seo seo"
    "cast cast"
    "synopsis synopsis"
    "status status"
    "details details";
  gap: 0.9rem 1.2rem;
  align-items: start;
  background: linear-gradient(160deg, rgba(44, 50, 59, 0.85), rgba(26, 29, 34, 0.92));
  border: 1px solid var(--line-blue);
  border-radius: 6px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(232, 116, 58, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.movie-overview > * {
  position: relative;
  z-index: 1;
}
.poster-shell {
  grid-area: poster;
  align-self: start;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}
.headline-group {
  grid-area: headline;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.movie-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.015em;
  color: var(--paper-warm);
  text-shadow: 0 1px 8px rgba(232, 116, 58, 0.15);
}
.movie-tagline {
  font-size: 0.88rem;
  color: var(--smoke-orange-soft);
  line-height: 1.45;
  border-left: 2px solid rgba(232, 116, 58, 0.4);
  padding-left: 0.55rem;
  letter-spacing: 0.02em;
}
.player-shell {
  grid-area: player;
  width: 100%;
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-blue);
  transition: box-shadow 0.25s ease;
}
.main-player {
  display: block;
  width: 100%;
  background: #000;
  border-radius: 5px 5px 0 0;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.4rem 0.5rem;
  background: linear-gradient(180deg, rgba(35, 40, 48, 0.98), rgba(26, 29, 34, 0.98));
  border-top: 1px solid var(--line-faint);
}
.control-btn {
  font-size: 0.74rem;
  padding: 0.22rem 0.55rem;
  color: var(--paper-dim);
  background: rgba(61, 79, 99, 0.22);
  border: 1px solid var(--line-blue);
  border-radius: 3px;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.control-btn:hover {
  color: var(--smoke-orange);
  background: rgba(232, 116, 58, 0.12);
  border-color: rgba(232, 116, 58, 0.5);
}
.control-btn:active {
  background: rgba(232, 116, 58, 0.25);
}
.player-shell.is-playing .main-player {
  box-shadow: 0 0 0 1px rgba(232, 116, 58, 0.4);
}
.player-shell.is-theater {
  position: relative;
  z-index: 30;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.82), 0 8px 40px rgba(0, 0, 0, 0.7);
  border-radius: 0;
}
.player-shell.is-theater .main-player {
  border-radius: 0;
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  background: #050506;
  border-top-color: rgba(232, 116, 58, 0.25);
}
.player-shell.is-lights-off .control-btn {
  color: var(--smoke-orange-soft);
  background: rgba(232, 116, 58, 0.08);
  border-color: rgba(232, 116, 58, 0.35);
}
.seo-description {
  grid-area: seo;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--paper-mute);
  border-top: 1px solid var(--line-blue);
  padding-top: 0.7rem;
  letter-spacing: 0.015em;
}
.cast-section {
  grid-area: cast;
  border-top: 1px solid var(--line-blue);
  padding-top: 0.7rem;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.42rem 0.55rem;
  background: rgba(61, 79, 99, 0.16);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  min-width: 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cast-card:hover {
  border-color: rgba(232, 116, 58, 0.45);
  background: rgba(232, 116, 58, 0.07);
}
.cast-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--paper-warm);
  letter-spacing: 0.02em;
}
.cast-role {
  font-size: 0.7rem;
  color: var(--smoke-orange-soft);
  letter-spacing: 0.03em;
}
.synopsis-section {
  grid-area: synopsis;
  border-top: 1px solid var(--line-blue);
  padding-top: 0.7rem;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.1rem;
  align-items: start;
}
.synopsis-para {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--paper-dim);
  letter-spacing: 0.015em;
}
.synopsis-para:last-child {
  border-left: 2px solid rgba(232, 116, 58, 0.35);
  padding-left: 0.55rem;
  color: var(--paper-warm);
}
.episode-status-section {
  grid-area: status;
  border-top: 1px solid var(--line-blue);
  padding-top: 0.7rem;
}
.status-line {
  font-size: 0.85rem;
  color: var(--paper-warm);
  letter-spacing: 0.02em;
  padding: 0.4rem 0.65rem;
  background: linear-gradient(90deg, rgba(232, 116, 58, 0.16), rgba(232, 116, 58, 0.02));
  border-left: 3px solid var(--smoke-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.details-section {
  grid-area: details;
  border-top: 1px solid var(--line-blue);
  padding-top: 0.7rem;
}
.details-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.25rem 0.5rem;
  align-items: baseline;
}
.detail-key {
  font-size: 0.76rem;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.18rem 0;
}
.detail-value {
  font-size: 0.8rem;
  color: var(--paper-warm);
  letter-spacing: 0.015em;
  padding: 0.18rem 0;
  min-width: 0;
  overflow-wrap: break-word;
}
.timeline-section {
  padding: 0.2rem 0 0.4rem;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem 0.9rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(232, 116, 58, 0.35);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem 0.55rem 0.4rem 0.7rem;
  background: rgba(35, 40, 48, 0.6);
  border: 1px solid var(--line-blue);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.85rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--smoke-orange);
  box-shadow: 0 0 8px 2px rgba(232, 116, 58, 0.55);
}
.timeline-node::after {
  content: "";
  position: absolute;
  left: -0.95rem;
  top: 1.1rem;
  width: 0.6rem;
  height: 1px;
  background: rgba(232, 116, 58, 0.4);
}
.timeline-node:hover {
  border-color: rgba(232, 116, 58, 0.55);
  background: rgba(232, 116, 58, 0.08);
  transform: translateX(2px);
}
.timeline-timecode {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--smoke-orange);
  letter-spacing: 0.08em;
}
.timeline-label {
  font-size: 0.8rem;
  color: var(--paper-dim);
  line-height: 1.45;
  letter-spacing: 0.015em;
}
.episodes-section {
  padding: 0.2rem 0 0.4rem;
}
.episode-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.episode-strip::-webkit-scrollbar {
  height: 6px;
}
.episode-strip::-webkit-scrollbar-track {
  background: rgba(61, 79, 99, 0.2);
  border-radius: 3px;
}
.episode-strip::-webkit-scrollbar-thumb {
  background: rgba(232, 116, 58, 0.45);
  border-radius: 3px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.55rem 0.6rem;
  background: linear-gradient(170deg, rgba(44, 50, 59, 0.85), rgba(35, 40, 48, 0.7));
  border: 1px solid var(--line-blue);
  border-radius: 5px;
  min-width: 0;
  scroll-snap-align: start;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.episode-card:hover {
  border-color: rgba(232, 116, 58, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.episode-number {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--alley-blue-soft);
  letter-spacing: 0.1em;
}
.episode-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--paper-warm);
  line-height: 1.3;
  letter-spacing: 0.015em;
}
.episode-summary {
  font-size: 0.74rem;
  color: var(--paper-mute);
  line-height: 1.5;
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 0.68rem;
  color: var(--alley-blue-soft);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.episode-flame {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--smoke-orange);
  letter-spacing: 0.05em;
  padding: 0.12rem 0.4rem;
  border: 1px solid rgba(232, 116, 58, 0.5);
  border-radius: 10px;
  background: rgba(232, 116, 58, 0.1);
  white-space: nowrap;
}
.comments-section {
  padding: 0.2rem 0 0.4rem;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.9rem;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.45rem 0.6rem;
  background: rgba(232, 226, 216, 0.055);
  border: 1px solid rgba(232, 226, 216, 0.08);
  border-radius: var(--radius);
  min-width: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.comment-card:nth-child(even) {
  transform: translateX(0.5rem);
}
.comment-card:hover {
  background: rgba(232, 226, 216, 0.1);
  border-color: rgba(232, 116, 58, 0.3);
}
.comment-nickname {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--smoke-orange-soft);
  letter-spacing: 0.03em;
}
.comment-text {
  font-size: 0.75rem;
  color: var(--paper-dim);
  line-height: 1.55;
  letter-spacing: 0.015em;
}
.recommend-region {
  padding: 0.2rem 0 0.3rem;
}
.region-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper-warm);
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--alley-blue-soft);
  line-height: 1.25;
}
.recommend-region-1 .region-heading {
  border-left-color: var(--smoke-orange);
}
.recommend-region-2 .region-heading {
  border-left-color: var(--smoke-orange-soft);
}
.recommend-region-3 .region-heading {
  border-left-color: var(--alley-blue-soft);
}
.recommend-strips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.5rem;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  background: linear-gradient(90deg, rgba(44, 50, 59, 0.8), rgba(35, 40, 48, 0.6));
  border: 1px solid var(--line-blue);
  border-radius: 5px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.recommend-item:hover {
  border-color: rgba(232, 116, 58, 0.55);
  background: linear-gradient(90deg, rgba(232, 116, 58, 0.12), rgba(35, 40, 48, 0.7));
  transform: translateX(2px);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 76px;
  flex: 0 0 76px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.recommend-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--paper-warm);
  line-height: 1.3;
  letter-spacing: 0.015em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 0.7rem;
  color: var(--paper-mute);
  line-height: 1.4;
  letter-spacing: 0.01em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.recommend-item .recommend-name, a.recommend-item .recommend-blurb {
  min-width: 0;
}
a.recommend-item {
  flex-wrap: nowrap;
}
a.recommend-item > span {
  min-width: 0;
  flex: 1 1 auto;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1rem 1.4rem;
  border-top: 1px solid var(--line-blue);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.8rem;
  color: var(--paper-dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.18s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--smoke-orange);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.55rem;
}
.friend-links-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--smoke-orange-soft);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 0.74rem;
  color: var(--alley-blue-soft);
  text-decoration: none;
  padding: 0.1rem 0.35rem;
  border: 1px solid rgba(90, 109, 130, 0.22);
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-friend-link:hover {
  color: var(--smoke-orange);
  border-color: rgba(232, 116, 58, 0.45);
  text-decoration: none;
}
.site-disclaimer {
  font-size: 0.7rem;
  color: var(--paper-mute);
  line-height: 1.55;
  letter-spacing: 0.015em;
  border-top: 1px solid rgba(90, 109, 130, 0.18);
  padding-top: 0.5rem;
}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "headline"
      "player"
      "seo"
      "cast"
      "synopsis"
      "status"
      "details";
    gap: 0.8rem;
  }
.poster-shell {
    max-width: 240px;
    justify-self: center;
  }
.headline-group {
    align-self: start;
    text-align: center;
    align-items: center;
  }
.movie-tagline {
    border-left: 0;
    border-top: 2px solid rgba(232, 116, 58, 0.4);
    padding-left: 0;
    padding-top: 0.4rem;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: auto minmax(0, 1fr);
  }
.comments-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card:nth-child(even) {
    transform: none;
  }}
@media (max-width: 560px) {body {
    font-size: 14px;
  }
.page-main {
    padding: 0.7rem 0.65rem 1rem;
    gap: 0.8rem;
  }
.movie-overview {
    padding: 0.7rem;
  }
.movie-title {
    font-size: 1.15rem;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 0.85rem;
  }
.episode-strip {
    grid-auto-columns: minmax(160px, 78vw);
  }
.recommend-strips {
    grid-template-columns: minmax(0, 1fr);
  }
.control-btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.45rem;
  }
.site-header {
    padding: 0.5rem 0.65rem;
  }
.category-nav {
    justify-content: flex-start;
  }}
@media (max-width: 380px) {.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-key {
    margin-top: 0.25rem;
  }}

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}
