*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, #0a0e1a 0%, #13152e 45%, #1a1230 100%);
  color: #cbd0e0;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input[type="range"] { cursor: pointer; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 14, 26, 0.92);
  border-bottom: 1px solid #2a2f4a;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
.site-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f2c97d;
  white-space: nowrap;
}
a[data-contract="site-name"] {
  color: #f2c97d;
  text-decoration: none;
  transition: color 0.2s;
}
a[data-contract="site-name"]:hover { color: #ffdf9e; }
.categories-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories-nav::-webkit-scrollbar { display: none; }
.runtime-category {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  color: #9aa3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2f4a;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.2s;
}
a.runtime-category {
  color: #9aa3b8;
  text-decoration: none;
}
a.runtime-category:hover {
  color: #f2c97d;
  border-color: #f2c97d;
  background: rgba(242, 201, 125, 0.08);
}
main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}
.movie-overview-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem;
  margin-top: 1.25rem;
  background: rgba(16, 18, 34, 0.85);
  border: 1px solid #2a2f4a;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.poster-wrapper {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.main-poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid #3a3f5c;
  border-radius: 2px;
  background: #1a1c30;
}
.movie-info-group {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.movie-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #e8eaf6;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.movie-tagline {
  font-size: 0.95rem;
  color: #f2c97d;
  font-style: italic;
  letter-spacing: 0.03em;
  border-left: 3px solid #f2c97d;
  padding-left: 0.75rem;
}
.fragment-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #d8dce8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #2a2f4a;
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}
.cast-item {
  font-size: 0.9rem;
  color: #b0b7cc;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.cast-item::before {
  content: "·";
  color: #f2c97d;
  margin-right: 0.4rem;
}
.synopsis-fragment {
  border-top: 1px solid #2a2f4a;
  padding-top: 0.75rem;
}
.synopsis-paragraph {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #aeb4c8;
  margin-bottom: 0.5rem;
  text-align: justify;
}
.episode-status-fragment {
  border-top: 1px solid #2a2f4a;
  padding-top: 0.75rem;
}
.status-text {
  font-size: 1rem;
  color: #e8eaf6;
  margin-bottom: 0.4rem;
}
.total-episodes, .current-episode {
  color: #f2c97d;
  font-weight: 700;
}
.progress-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}
.episode-duration-label {
  color: #7a8299;
}
.episode-duration-value {
  color: #cbd0e0;
}
.details-fragment {
  border-top: 1px solid #2a2f4a;
  padding-top: 0.75rem;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.3rem 1rem;
}
.detail-item {
  font-size: 0.85rem;
  color: #cbd0e0;
  display: flex;
  gap: 0.4rem;
}
.detail-label {
  color: #7a8299;
  min-width: 3.5em;
}
.player-wide-wrapper {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  background: #0a0c18;
  border: 1px solid #2a2f4a;
  border-radius: 4px;
  overflow: hidden;
}
.player-wide-wrapper video {
  display: block;
  background: #000;
}
.player-control-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(10, 12, 24, 0.95);
  border-top: 1px solid #2a2f4a;
  flex-wrap: wrap;
}
.player-control-bar button {
  font-size: 0.75rem;
  color: #9aa3b8;
  padding: 0.25rem 0.5rem;
  border: 1px solid #2a2f4a;
  border-radius: 2px;
  transition: all 0.2s;
}
.player-control-bar button:hover {
  color: #f2c97d;
  border-color: #f2c97d;
}
.progress-slider, .volume-slider {
  flex: 1;
  min-width: 80px;
  accent-color: #f2c97d;
  height: 4px;
}
.volume-slider { flex: 0 0 90px; }
.timeline-fragment {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(16, 18, 34, 0.7);
  border: 1px solid #2a2f4a;
  border-radius: 4px;
}
.timeline-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #3a3f5c #121426;
}
.timeline-list {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding-bottom: 0.5rem;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem;
  border-left: 2px solid #f2c97d;
  background: rgba(20, 22, 40, 0.5);
  min-width: 180px;
  max-width: 220px;
}
.timeline-item:first-child { border-left-color: #f2c97d; }
.timeline-item:last-child { border-right: 1px solid #2a2f4a; }
.timecode {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: #f2c97d;
  font-weight: 700;
}
.event-label {
  font-size: 0.85rem;
  color: #b0b7cc;
  line-height: 1.4;
}
.episodes-fragment {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(16, 18, 34, 0.7);
  border: 1px solid #2a2f4a;
  border-radius: 4px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid #2a2f4a;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.episode-card:hover {
  border-color: #f2c97d;
  background: rgba(30, 32, 54, 0.7);
}
.episode-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f2c97d;
}
.episode-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8eaf6;
}
.episode-summary {
  font-size: 0.82rem;
  color: #9aa3b8;
  line-height: 1.5;
  flex: 1;
}
.episode-duration {
  font-size: 0.75rem;
  color: #7a8299;
  border-top: 1px solid #2a2f4a;
  padding-top: 0.3rem;
}
.comments-fragment {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(16, 18, 34, 0.7);
  border: 1px solid #2a2f4a;
  border-radius: 4px;
}
.comments-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  align-items: start;
}
.comment-card {
  padding: 0.85rem;
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid #2a2f4a;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.2s;
}
.comment-card:hover { border-color: #4a506c; }
.comment-nickname {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f2c97d;
  letter-spacing: 0.03em;
}
.comment-text {
  font-size: 0.85rem;
  color: #b0b7cc;
  line-height: 1.5;
}
.recommendation-region {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(16, 18, 34, 0.7);
  border: 1px solid #2a2f4a;
  border-radius: 4px;
}
.recommendation-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d8dce8;
  border-bottom: 1px solid #2a2f4a;
  padding-bottom: 0.3rem;
  margin-bottom: 0.75rem;
}
.recommendation-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
a.recommendation-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.5rem;
  background: rgba(20, 22, 40, 0.6);
  border: 1px solid #2a2f4a;
  border-radius: 3px;
  color: #cbd0e0;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
a.recommendation-item:hover {
  border-color: #f2c97d;
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  background: #1a1c30;
}
[data-runtime="name"] {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8eaf6;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #9aa3b8;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1440px;
  margin: 2rem auto 0;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid #2a2f4a;
  background: rgba(10, 12, 24, 0.7);
}
.disclaimer-text {
  font-size: 0.75rem;
  color: #6a7288;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.85rem;
  color: #9aa3b8;
  text-decoration: none;
  transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #f2c97d;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
}
.friend-links-label {
  font-size: 0.8rem;
  color: #7a8299;
  margin-right: 0.5rem;
}
a.runtime-friend-link {
  font-size: 0.8rem;
  color: #9aa3b8;
  text-decoration: none;
  transition: color 0.2s;
}
a.runtime-friend-link:hover {
  color: #f2c97d;
  text-decoration: underline;
}
.player.playing video { outline: 1px solid #f2c97d; }
.player.muted video { opacity: 0.85; }
.player.theater-mode { max-width: 1200px; margin: 0 auto; }
.player.lights-off { filter: brightness(1.2) saturate(0.9); }
.player.theater-mode ~ * { opacity: 0.3; pointer-events: none; }
@media (max-width: 960px) {.movie-overview-shell {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
  }}
@media (max-width: 720px) {header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
.categories-nav {
    width: 100%;
    flex-wrap: nowrap;
  }
.movie-overview-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.75rem;
  }
.poster-wrapper {
    grid-column: 1;
    grid-row: 1;
    max-width: 180px;
    margin: 0 auto;
  }
.movie-info-group {
    grid-column: 1;
    grid-row: 2;
  }
.player-wide-wrapper {
    grid-column: 1;
    grid-row: 3;
  }
.movie-title {
    font-size: 1.4rem;
  }
.details-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
.comments-masonry {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
.recommendation-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }}
@media (max-width: 480px) {main {
    padding: 0 0.75rem 1.5rem;
  }
.movie-overview-shell {
    padding: 0.5rem;
  }
.poster-wrapper {
    max-width: 140px;
  }
.episode-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
.episode-card {
    padding: 0.5rem;
  }
.comments-masonry {
    grid-template-columns: 1fr;
  }
.recommendation-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
  }
.player-control-bar {
    gap: 0.25rem;
    padding: 0.4rem;
  }
.player-control-bar button {
    font-size: 0.7rem;
    padding: 0.2rem 0.3rem;
  }
.volume-slider {
    flex: 0 0 60px;
  }
.timeline-item {
    min-width: 160px;
    max-width: 200px;
    padding: 0.5rem 0.75rem;
  }
.footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }}
.timeline-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-track {
  background: #121426;
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #3a3f5c;
  border-radius: 3px;
}
.categories-nav::-webkit-scrollbar {
  height: 4px;
}
.categories-nav::-webkit-scrollbar-thumb {
  background: #3a3f5c;
  border-radius: 2px;
}
::selection {
  background: rgba(242, 201, 125, 0.3);
  color: #fff;
}

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}
