*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  background: #0a0a12;
  color: #c8b8a8;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-brand {
  font-family: "Arial Black", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #e74c3c;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
  flex-shrink: 0;
}
.site-brand:hover {
  color: #fff;
  text-shadow: 0 0 16px rgba(231, 76, 60, 0.8);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar {
  display: none;
}
.runtime-category {
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #8e7e6e;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
}
.runtime-category:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}
main {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
.movie-overview-block {
  background: linear-gradient(145deg, #0e0e1a 0%, #141426 100%);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 6px;
  padding: 1.25rem;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.hero-poster-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
}
.hero-poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.7);
  opacity: 0.9;
}
.hero-title-group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: radial-gradient(ellipse at center, rgba(10, 10, 18, 0.2) 0%, rgba(10, 10, 18, 0.7) 100%);
}
.movie-title-metal {
  font-family: "Arial Black", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  letter-spacing: 0.06em;
  color: #e8d5b5;
  text-shadow:
    0 1px 0 #8e7e5e,
    0 2px 0 #6b5d45,
    0 3px 0 #4a3f2e,
    0 4px 8px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(231, 76, 60, 0.35);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 90%;
}
.movie-tagline {
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: #d4b88a;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}
.synopsis-panel {
  border-left: 3px solid rgba(231, 76, 60, 0.5);
  padding-left: 1rem;
}
.section-heading-serif {
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #e8d5b5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  position: relative;
  display: inline-block;
}
.section-heading-serif::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e74c3c, transparent);
}
.synopsis-para {
  font-size: 0.85rem;
  color: #a89a8a;
  margin-bottom: 0.6rem;
  line-height: 1.65;
  max-width: 75ch;
}
.cast-grid-section {
  margin-top: 0.25rem;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.8rem;
}
.cast-card {
  background: #12121e;
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 4px;
  padding: 0.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}
.cast-card:hover {
  border-color: rgba(231, 76, 60, 0.5);
  transform: translateY(-2px);
}
.cast-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.cast-card:hover .cast-photo {
  filter: grayscale(0%);
}
.cast-role {
  display: block;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #e8d5b5;
  margin-top: 0.4rem;
}
.cast-actor {
  display: block;
  font-size: 0.7rem;
  color: #7d7060;
  margin-top: 0.15rem;
}
.movie-details-panel {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 0.8rem 1rem;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.4rem 1.2rem;
}
.detail-item {
  display: flex;
  gap: 0.4rem;
  font-size: 0.8rem;
  align-items: baseline;
}
.detail-item dt {
  color: #7d7060;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.detail-item dd {
  color: #c8b8a8;
  font-size: 0.8rem;
}
.player-block {
  width: 100%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(192, 57, 43, 0.2);
}
.player-block video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.5rem;
  background: #0e0e1a;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
}
.player-controls button {
  font-family: "Arial", sans-serif;
  font-size: 0.7rem;
  color: #8e7e6e;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.2s;
}
.player-controls button:hover {
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.4);
  background: rgba(231, 76, 60, 0.1);
}
.episode-status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.6rem 0.8rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border-left: 3px solid #e74c3c;
}
.status-label, .status-current, .status-progress {
  font-family: "Arial", sans-serif;
  font-size: 0.75rem;
  color: #a89a8a;
  letter-spacing: 0.04em;
}
.status-label {
  color: #e8d5b5;
  font-weight: 700;
}
.status-current {
  color: #e74c3c;
  font-weight: 700;
}
.status-progress {
  color: #7d7060;
}
.episodes-horizontal-scroll {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
}
.episode-card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.5rem 0.2rem 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #e74c3c #12121e;
}
.episode-card-row::-webkit-scrollbar {
  height: 6px;
}
.episode-card-row::-webkit-scrollbar-track {
  background: #12121e;
}
.episode-card-row::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 3px;
}
.episode-card {
  background: #12121e;
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 6px;
  padding: 1rem;
  scroll-snap-align: start;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}
.episode-card:hover {
  border-color: rgba(231, 76, 60, 0.5);
  transform: translateY(-2px);
}
.episode-number {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  font-family: "Arial Black", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(231, 76, 60, 0.15);
}
.episode-title {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8d5b5;
  margin-bottom: 0.5rem;
  padding-right: 1.5rem;
}
.episode-summary {
  font-size: 0.75rem;
  color: #8e7e6e;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.episode-duration {
  font-family: "Arial", sans-serif;
  font-size: 0.65rem;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.timeline-vertical {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-left: 2px solid #e74c3c;
  margin-left: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.timeline-vertical .section-heading-serif {
  margin-left: -1.5rem;
}
.timeline-event {
  position: relative;
  padding-bottom: 1.2rem;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.8rem;
}
.timeline-event::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e74c3c;
  border: 2px solid #0a0a12;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}
.timecode {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  color: #e74c3c;
  font-weight: 700;
  text-align: right;
}
.event-desc {
  font-size: 0.85rem;
  color: #a89a8a;
  line-height: 1.5;
}
.comments-masonry {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.comment-column:first-child {
  transform: translateY(1rem);
}
.comment-bubble {
  background: #12121e;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  position: relative;
}
.comment-bubble::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #12121e;
  border-left: 1px solid rgba(192, 57, 43, 0.2);
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  transform: rotate(45deg);
}
.comment-nickname {
  display: block;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-bottom: 0.35rem;
}
.comment-text {
  font-size: 0.8rem;
  color: #a89a8a;
  line-height: 1.6;
}
.recommendation-region {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
}
.recommendation-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 200px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.2rem 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #e74c3c #12121e;
}
.recommendation-track::-webkit-scrollbar {
  height: 6px;
}
.recommendation-track::-webkit-scrollbar-track {
  background: #12121e;
}
.recommendation-track::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 3px;
}
.rec-card {
  background: #12121e;
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 6px;
  padding: 0.6rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.3s, transform 0.2s;
  align-self: start;
}
.rec-card:hover {
  border-color: rgba(231, 76, 60, 0.5);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.8) saturate(0.8);
  transition: filter 0.3s;
}
.rec-card:hover img {
  filter: brightness(1) saturate(1);
}
[data-runtime="name"] {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #e8d5b5;
  line-height: 1.3;
}
[data-runtime="blurb"] {
  font-size: 0.68rem;
  color: #7d7060;
  line-height: 1.4;
}
footer {
  background: #0e0e1a;
  border-top: 1px solid rgba(192, 57, 43, 0.3);
  padding: 1.5rem 1.5rem 2rem;
  margin-top: auto;
}
.disclaimer-text {
  font-size: 0.65rem;
  color: #5d5244;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 90ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-family: "Arial", sans-serif;
  font-size: 0.75rem;
  color: #8e7e6e;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e74c3c;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
  font-size: 0.7rem;
}
.friend-label {
  color: #5d5244;
  font-family: "Arial", sans-serif;
  font-size: 0.7rem;
}
.runtime-friend-link {
  color: #7d7060;
  font-size: 0.7rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.runtime-friend-link:hover {
  color: #e74c3c;
}
.theater-mode {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
  object-fit: contain;
  padding: 2rem;
}
.lights-dim {
  filter: brightness(0.3) saturate(0.5);
  transition: filter 0.4s;
}
.player-block video:fullscreen {
  object-fit: contain;
  background: #000;
}
@media (max-width: 768px) {header {
    padding: 0.5rem 0.8rem;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
.site-brand {
    font-size: 1rem;
  }
.category-nav {
    width: 100%;
    justify-content: flex-start;
  }
main {
    padding: 0 0.5rem 1.5rem;
  }
.movie-overview-block {
    padding: 0.8rem;
    margin-top: 0.5rem;
  }
.movie-title-metal {
    font-size: 1.2rem;
  }
.movie-tagline {
    letter-spacing: 0.15em;
    font-size: 0.65rem;
  }
.cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.details-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.6rem;
  }
.detail-item {
    flex-direction: column;
    gap: 0.05rem;
  }
.episode-card-row {
    grid-auto-columns: minmax(200px, 240px);
  }
.timeline-vertical {
    margin-left: 0.3rem;
    padding-left: 1.2rem;
  }
.timeline-event {
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
  }
.timeline-event::before {
    left: -1.2rem;
  }
.comments-masonry {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
.comment-column:first-child {
    transform: none;
  }
.recommendation-track {
    grid-auto-columns: minmax(140px, 170px);
  }
.player-controls button {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }}
@media (max-width: 480px) {.cast-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
.cast-card {
    padding: 0.3rem;
  }
.details-list {
    grid-template-columns: 1fr;
  }
.episode-status-bar {
    flex-direction: column;
    gap: 0.3rem;
  }
.episode-card-row {
    grid-auto-columns: minmax(180px, 210px);
  }
.recommendation-track {
    grid-auto-columns: minmax(130px, 150px);
    gap: 0.6rem;
  }
.player-block video {
    aspect-ratio: 16 / 9;
  }
.player-controls {
    gap: 0.15rem;
    padding: 0.3rem;
  }
.player-controls button {
    padding: 0.2rem 0.4rem;
  }
footer {
    padding: 1rem 0.8rem 1.5rem;
  }
.friend-links {
    gap: 0.3rem 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}
