*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 15px;
  scroll-behavior: smooth;
}
body {
  background: #0a0a0c;
  color: #d6d0c4;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
a[data-contract="site-name"] {
  color: #e0d5b8;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
a.runtime-category {
  color: #c8bfae;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-left: 2px solid #8a1e1e;
  white-space: nowrap;
}
a.rec-item {
  color: #d8d0c0;
  text-decoration: none;
}
a.runtime-friend-link {
  color: #9a918a;
  text-decoration: none;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #2a2a2e;
  transition: border-color 0.2s ease;
}
a.runtime-friend-link:hover {
  border-color: #8a1e1e;
  color: #e0d5b8;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: #a09a90;
  text-decoration: none;
  font-size: 0.8rem;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #e0d5b8;
  text-decoration: underline;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1e1e22;
  background: #0d0d10;
}
.site-brand {
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(224, 213, 184, 0.3);
}
nav[data-contract="categories"] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
nav[data-contract="categories"]::-webkit-scrollbar {
  display: none;
}
main {
  max-width: 1440px;
  margin: 0 auto;
}
.hero-cage {
  position: relative;
  background: #0a0a0c;
  border-bottom: 3px solid #1e1e22;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 60vh;
  min-height: 320px;
  position: relative;
}
.hero-figure {
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-shadow {
  background: linear-gradient(135deg, #0a0a0c 0%, #16161a 50%, #0d0d10 100%);
  position: relative;
}
.hero-shadow::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 30%;
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, #8a1e1e, #3a3a3e, #8a1e1e);
  transform: rotate(15deg);
  box-shadow: 0 0 12px rgba(138, 30, 30, 0.6);
}
.hero-shadow::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 25%;
  width: 2px;
  height: 60%;
  background: #3a3a3e;
  transform: rotate(-20deg);
  opacity: 0.5;
}
.hero-face {
  background: linear-gradient(90deg, #0d0d10 0%, #1a1a1e 100%);
  position: relative;
  border-left: 2px solid #1e1e22;
}
.hero-face::before {
  content: "";
  position: absolute;
  right: 20%;
  top: 30%;
  width: 40%;
  height: 25%;
  background: radial-gradient(circle, rgba(180, 160, 140, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
}
.hero-face::after {
  content: "";
  position: absolute;
  right: 25%;
  top: 35%;
  width: 8px;
  height: 8px;
  background: #c8bfae;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 191, 174, 0.8), 0 0 20px rgba(200, 191, 174, 0.3);
}
.rope-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 35%, rgba(60, 55, 50, 0.3) 35%, rgba(60, 55, 50, 0.3) 36%, transparent 36%, transparent 70%, rgba(60, 55, 50, 0.2) 70%, rgba(60, 55, 50, 0.2) 71%, transparent 71%),
    repeating-linear-gradient(90deg, transparent 0%, transparent 10%, rgba(60, 55, 50, 0.15) 10%, rgba(60, 55, 50, 0.15) 10.5%, transparent 10.5%, transparent 100%);
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 0;
  background: #0a0a0c;
}
.poster-wrapper {
  position: relative;
  padding: 1rem;
  background: #0a0a0c;
  border-right: 1px solid #1a1a1e;
}
.poster-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid #2a2a2e;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
.overview-content {
  padding: 1.5rem 1.5rem 1rem;
  background: #0d0d10;
}
.movie-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #e0d5b8;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.movie-tagline {
  font-size: 0.95rem;
  color: #8a1e1e;
  font-style: italic;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  border-left: 3px solid #8a1e1e;
  padding-left: 0.6rem;
}
.section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e0d5b8;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #1e1e22;
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #8a1e1e;
}
.synopsis-panel {
  margin-bottom: 1.5rem;
}
.synopsis-line {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #b8b0a4;
  margin-bottom: 0.6rem;
  text-align: justify;
  opacity: 0.85;
}
.cast-panel {
  margin-bottom: 1.5rem;
}
.cast-list {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.cast-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d0c8b8;
  padding: 0.4rem 0.9rem;
  border: 1px solid #2a2a2e;
  background: #121216;
}
.cast-offset {
  transform: translateY(5px);
  border-color: #8a1e1e;
  background: #16161a;
}
.episode-status {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.total-badge, .current-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.total-badge {
  background: #1a1a1e;
  color: #d0c8b8;
  border: 1px solid #2a2a2e;
}
.current-badge {
  background: #8a1e1e;
  color: #f0e8d8;
  border: 1px solid #a02a2a;
}
.episode-mini-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  width: 100%;
}
.episode-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #121216;
  border: 1px solid #2a2a2e;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
}
.ep-number {
  color: #8a1e1e;
  font-weight: 900;
  font-size: 0.85rem;
}
.ep-title {
  color: #b8b0a4;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid #1e1e22;
  padding-top: 0.8rem;
}
.detail-item {
  font-size: 0.8rem;
  color: #c0b8a8;
}
.detail-label {
  display: block;
  font-size: 0.7rem;
  color: #6a6a6e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}
.player-arena {
  grid-column: 2 / 3;
  padding: 0 1.5rem 1.5rem;
  background: #0d0d10;
  position: relative;
}
.player-arena video {
  display: block;
  background: #000;
  border: 1px solid #1e1e22;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}
.player-controls {
  display: flex;
  gap: 0.3rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}
.player-controls button {
  background: #121216;
  border: 1px solid #2a2a2e;
  color: #b8b0a4;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.player-controls button:hover {
  background: #1e1e22;
  color: #e0d5b8;
}
.player-arena.theater-mode {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.player-arena.theater-mode video {
  max-height: 85vh;
  width: auto;
  aspect-ratio: 16 / 9;
}
.player-arena.lights-off video {
  filter: brightness(0.3) contrast(1.2);
}
.timeline-whip {
  padding: 2rem 1.5rem;
  background: #0d0d10;
  border-bottom: 1px solid #1e1e22;
}
.timeline-track {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 600px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #8a1e1e 10%, #8a1e1e 90%, transparent);
  transform: translateX(-50%);
}
.timeline-node {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.6rem 1rem;
  position: relative;
  background: #0d0d10;
  width: 50%;
}
.timeline-node:nth-child(odd) {
  left: 0;
  padding-right: 2rem;
  justify-content: flex-end;
  text-align: right;
}
.timeline-node:nth-child(even) {
  left: 50%;
  padding-left: 2rem;
}
.timeline-node:nth-child(odd) .timecode {
  order: 2;
}
.timeline-node:nth-child(odd) .event-label {
  order: 1;
}
.timeline-node::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #8a1e1e;
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  box-shadow: 0 0 8px rgba(138, 30, 30, 0.6);
}
.timeline-node:nth-child(odd)::before {
  right: -5px;
}
.timeline-node:nth-child(even)::before {
  left: -5px;
}
.timecode {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a1e1e;
  border: 1px solid #8a1e1e;
  padding: 0.1rem 0.4rem;
  font-style: italic;
}
.event-label {
  font-size: 0.85rem;
  color: #b8b0a4;
  line-height: 1.3;
}
.episode-deck {
  padding: 2rem 1.5rem;
  background: #0a0a0c;
  border-bottom: 1px solid #1e1e22;
}
.episode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.episode-card {
  background: #0d0d10;
  border: 1px solid #8a1e1e;
  border-left: 3px solid #8a1e1e;
  padding: 0.8rem;
  position: relative;
  transition: border-color 0.2s ease;
}
.episode-card:hover {
  border-color: #a02a2a;
}
.card-number {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1e;
  text-shadow: 0 0 1px #8a1e1e, 0 0 2px #8a1e1e;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e0d5b8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.card-summary {
  font-size: 0.8rem;
  color: #a09a90;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.card-duration {
  font-size: 0.7rem;
  color: #6a6a6e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.comment-gallery {
  padding: 2rem 1.5rem;
  background: #0d0d10;
  border-bottom: 1px solid #1e1e22;
}
.comment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.comment-bubble {
  background: #121216;
  border: 1px solid #2a2a2e;
  border-top: 2px solid #8a1e1e;
  padding: 0.8rem;
  position: relative;
}
.comment-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  width: 6px;
  height: 6px;
  background: #8a1e1e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(138, 30, 30, 0.6);
}
.commentator {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e0d5b8;
  margin-bottom: 0.3rem;
}
.comment-text {
  font-size: 0.78rem;
  color: #a09a90;
  line-height: 1.4;
}
.recommend-block {
  padding: 2rem 1.5rem;
  background: #0a0a0c;
  border-bottom: 1px solid #1e1e22;
}
.recommend-block.alt-tone {
  background: #0d0d10;
}
.recommend-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.rec-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #121216;
  border: 1px solid #2a2a2e;
  transition: border-color 0.2s ease;
}
.rec-item:hover {
  border-color: #8a1e1e;
}
.rec-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.rec-item span[data-runtime="name"] {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d0c8b8;
  padding: 0 0.5rem;
}
.rec-item span[data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #8a8a8e;
  padding: 0 0.5rem 0.5rem;
  line-height: 1.3;
  flex: 1;
}
.alt-tone .rec-item {
  background: #161616;
  border-color: #3a3a3e;
}
.alt-tone .rec-item:hover {
  border-color: #8a1e1e;
}
.alt-tone .section-heading::after {
  background: #8a1e1e;
}
footer {
  background: #0d0d10;
  padding: 1.5rem;
  border-top: 3px solid #1e1e22;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 1rem;
}
.friend-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a1e1e;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}
.footer-disclaimer {
  font-size: 0.7rem;
  color: #6a6a6e;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 800px;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {.overview-grid {
    grid-template-columns: 1fr;
  }
.poster-wrapper {
    border-right: none;
    border-bottom: 1px solid #1e1e22;
  }
.poster-img {
    max-width: 300px;
  }
.player-arena {
    grid-column: 1 / -1;
    padding: 1rem;
  }
.hero-split {
    height: 40vh;
  }
.episode-cards {
    grid-template-columns: repeat(3, 1fr);
  }
.comment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.recommend-track {
    grid-template-columns: repeat(4, 1fr);
  }}
@media (max-width: 768px) {html {
    font-size: 14px;
  }
header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.8rem;
  }
.site-brand {
    font-size: 1rem;
  }
nav[data-contract="categories"] {
    width: 100%;
    overflow-x: auto;
  }
.hero-split {
    grid-template-columns: 1fr;
    height: 30vh;
    min-height: 200px;
  }
.hero-face {
    border-left: none;
    border-top: 1px solid #1e1e22;
  }
.overview-content {
    padding: 1rem;
  }
.movie-title {
    font-size: 1.4rem;
  }
.detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.player-arena {
    padding: 1rem;
  }
.timeline-track {
    max-width: 100%;
  }
.timeline-node {
    width: 100%;
    left: 0 !important;
    padding: 0.6rem 1rem !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
.timeline-node::before {
    left: -5px !important;
    right: auto !important;
  }
.timeline-node .timecode {
    order: 1 !important;
  }
.timeline-node .event-label {
    order: 2 !important;
  }
.timeline-track::before {
    left: 0;
    transform: none;
  }
.episode-cards {
    grid-template-columns: 1fr;
  }
.comment-grid {
    grid-template-columns: 1fr;
  }
.recommend-track {
    grid-template-columns: repeat(2, 1fr);
  }
.footer-friends {
    flex-direction: column;
    align-items: flex-start;
  }}
@media (max-width: 480px) {.recommend-track {
    grid-template-columns: 1fr;
  }
.detail-grid {
    grid-template-columns: 1fr;
  }
.player-arena video {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
.hero-split {
    height: 20vh;
  }
.poster-img {
    max-width: 200px;
  }
.player-controls {
    gap: 0.2rem;
  }
.player-controls button {
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
  }
.timeline-node {
    flex-direction: column;
    gap: 0.3rem;
  }
.timeline-node:nth-child(odd) {
    align-items: flex-start;
  }
.timeline-node .timecode {
    font-size: 0.7rem;
  }
.timeline-node .event-label {
    font-size: 0.8rem;
  }}

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}
