:root {
  --bg: #070b14;
  --bg-soft: #0d1220;
  --surface: #141b2d;
  --surface-soft: #1a2237;
  --text: #e5e9f2;
  --muted: #9ba5bb;
  --line: rgba(209, 62, 87, 0.26);
  --accent: #c93d56;
  --accent-soft: #f05070;
  --ok: #f0cb5f;
  --radius: 16px;
  --container: 1240px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  color: var(--text);
  line-height: 1.66;
  background:
    radial-gradient(circle at 12% -8%, rgba(240, 80, 112, 0.18), transparent 36%),
    radial-gradient(circle at 85% 5%, rgba(209, 62, 87, 0.2), transparent 30%),
    linear-gradient(180deg, #070b14, #090f1a 42%, #060910 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2.8rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 700;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 20, 0.88);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-weight: 800;
}

.brand-mark {
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffedf0;
  text-shadow:
    0 0 4px rgba(240, 80, 112, 0.9),
    0 0 16px rgba(240, 80, 112, 0.8),
    0 0 26px rgba(240, 80, 112, 0.65);
}

.brand-note {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.42rem 0.64rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  padding: 0.42rem 0.58rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.current {
  color: var(--text);
  background: rgba(240, 80, 112, 0.14);
}

main {
  padding: 2.2rem 0 3.1rem;
}

.hero,
.char-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 60% 20%, rgba(240, 80, 112, 0.08), transparent 40%),
    linear-gradient(160deg, rgba(19, 26, 42, 0.92), rgba(10, 15, 26, 0.95));
  overflow: hidden;
  padding: 1.34rem;
}

.char-hero {
  grid-template-columns: 0.72fr 1.28fr;
}

.hero-copy h1,
.char-content h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.85rem, 4vw, 3.85rem);
  line-height: 1.08;
}

.lead {
  margin: 0.55rem 0;
  color: #d7dee9;
  font-size: 1.1rem;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.8rem 0;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(17, 22, 35, 0.95);
  padding: 0.38rem 0.62rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.rating-pill span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.rating-pill strong {
  color: var(--ok);
}

.chip-row,
.char-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin: 0.7rem 0;
}

.chip,
.char-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(240, 80, 112, 0.34);
  background: rgba(240, 80, 112, 0.08);
  color: #f28aa0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.68rem;
  text-transform: uppercase;
}

.hero-poster,
.char-photo img {
  border: 1px solid rgba(240, 80, 112, 0.32);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(13, 17, 31, 0.8);
}

.hero-poster {
  width: min(360px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin: 0 auto;
}

.char-photo img {
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 auto;
}

.meta-table {
  margin-top: 0.58rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(11, 17, 29, 0.68);
  overflow: hidden;
}

.mt-row {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
  padding: 0.58rem 0.78rem;
  border-bottom: 1px solid var(--line);
}

.mt-row:last-child {
  border-bottom: none;
}

.mk {
  color: #e86f86;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
  display: block;
  min-width: 0;
  margin-right: 0.8rem;
}

.mk::after {
  content: ":";
  margin-left: 0.18rem;
  color: rgba(240, 128, 151, 0.9);
}

.mv {
  color: #dce3ef;
  line-height: 1.45;
  display: block;
  min-width: 0;
  word-break: break-word;
}

.mv a {
  color: #f0889f;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.62rem 1rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(240, 80, 112, 0.52);
}

.breadcrumbs {
  margin: 0.22rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #ef7f98;
}

.section {
  margin-top: 1.18rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, rgba(20, 27, 45, 0.92), rgba(11, 16, 28, 0.96));
  padding: 1.3rem 1.35rem;
}

.section h2 {
  margin: 0 0 0.68rem;
  font-size: clamp(1.42rem, 2.5vw, 2.05rem);
  line-height: 1.2;
}

.section h2 .accent {
  color: #f06380;
}

.section h3 {
  margin: 0.95rem 0 0.45rem;
  font-size: 1.2rem;
}

.section p {
  margin: 0.58rem 0;
  color: #d6deeb;
}

.about-grid,
.char-bio-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.3rem;
}

.info-table,
.char-info-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 17, 29, 0.76);
  padding: 0.45rem 0.82rem;
  overflow: hidden;
}

.info-row,
.char-info-row {
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(0, 1fr);
  column-gap: 0.9rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0.64rem 0.2rem;
}

.info-row:last-child,
.char-info-row:last-child {
  border-bottom: none;
}

.info-key,
.char-info-key {
  color: #aeb8cb;
  font-weight: 600;
  line-height: 1.35;
  display: block;
  min-width: 0;
  margin-right: 0.7rem;
}

.info-key::after,
.char-info-key::after {
  content: ":";
  margin-left: 0.18rem;
  color: rgba(174, 184, 203, 0.85);
}

.info-value,
.char-info-value {
  color: #eff3fb;
  text-align: left;
  line-height: 1.45;
  display: block;
  min-width: 0;
  word-break: break-word;
}

.info-value .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(240, 80, 112, 0.12);
  border: 1px solid rgba(240, 80, 112, 0.34);
  color: #f1849a;
  border-radius: 999px;
  padding: 0.1rem 0.56rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(21, 29, 48, 0.96);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 80, 112, 0.48);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body {
  padding: 0.84rem 0.94rem;
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.16rem;
}

.card p {
  margin: 0.34rem 0;
  color: #d8e1ee;
}

.meta-line {
  color: #a8b3c8;
  font-size: 0.92rem;
}

.link-inline {
  color: #f1849a;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.player-shell {
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 13, 23, 0.88);
  overflow: hidden;
}

.player-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.player-note {
  margin-top: 0.62rem;
  font-size: 0.95rem;
  color: #ced8e9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-grid .shot {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.facts-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d8e1ef;
}

.facts-list li + li {
  margin-top: 0.46rem;
}

.quote-box {
  margin-top: 0.8rem;
  border-left: 4px solid var(--accent);
  background: rgba(240, 80, 112, 0.08);
  border-radius: 8px;
  padding: 0.82rem 0.94rem;
}

.quote-box p {
  margin: 0;
  font-style: italic;
}

.quote-box .quote-sign {
  margin-top: 0.35rem;
  color: #f1849a;
  font-weight: 700;
}

.actor-card-wide {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(22, 30, 49, 0.96);
  padding: 0.98rem;
}

.actor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(240, 80, 112, 0.42);
  overflow: hidden;
}

.actor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actor-role {
  color: #f18097;
  font-weight: 700;
}

.actor-description {
  margin-top: 0.3rem;
  color: #d8e1ee;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 21, 34, 0.96);
}

.faq-item + .faq-item {
  margin-top: 0.55rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.74rem 0.9rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 0.9rem 0.85rem;
  color: #d5deeb;
}

.site-footer {
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
  background: rgba(11, 16, 27, 0.95);
  padding: 1.35rem 0 1.6rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.45fr;
  gap: 1rem;
}

.footer-title {
  color: #ef718c;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.46rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem 0.8rem;
}

.footer-links a {
  color: #d4dcea;
}

.footer-links a:hover {
  color: #f08aa1;
}

.footer-service {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.82rem 0;
}

.footer-copy {
  margin-top: 0.82rem;
  color: #a8b2c6;
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}

.footer-nav a {
  color: #ef7f98;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.season-page .main-nav {
  gap: 0.24rem;
}

.season-page .main-nav a {
  font-size: 0.75rem;
}

.season-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 18% 16%, rgba(240, 80, 112, 0.09), transparent 35%),
    linear-gradient(160deg, rgba(18, 25, 41, 0.95), rgba(8, 12, 22, 0.96));
  padding: 1.34rem;
}

.season-hero-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.season-hero-poster {
  border: 1px solid rgba(240, 80, 112, 0.35);
  border-radius: 24px;
  background: #04070d;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.season-hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.season-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.season-player-note {
  color: #ea718b;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.vpn-alert {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 173, 40, 0.62);
  border-radius: 10px;
  background: rgba(255, 173, 40, 0.16);
  color: #ffd998;
  padding: 0.62rem 0.84rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-top: 0.72rem;
}

.player-select {
  appearance: none;
  border: 1px solid #3e4352;
  background: #2c3039;
  color: #f5f6f8;
  border-radius: 6px;
  padding: 0.44rem 2rem 0.44rem 0.68rem;
  font: inherit;
  font-size: 0.95rem;
  min-width: 130px;
  background-image:
    linear-gradient(45deg, transparent 50%, #d0d4de 50%),
    linear-gradient(135deg, #d0d4de 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(52% - 3px),
    calc(100% - 12px) calc(52% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.player-select.voice {
  min-width: 260px;
}

.season-player-frame {
  margin-top: 0.72rem;
  border: 1px solid rgba(205, 60, 86, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.season-player-frame iframe {
  width: 100%;
  height: 580px;
  border: 0;
  display: block;
}

.season-rating-box {
  margin-top: 1.05rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(22, 30, 48, 0.96), rgba(12, 17, 28, 0.96));
  padding: 0.88rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.season-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.season-score-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid rgba(240, 80, 112, 0.72);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: #f3f4f7;
}

.season-score-text {
  font-size: 1.05rem;
  color: #dce5f0;
}

.season-stars {
  color: #38425a;
  letter-spacing: 0.09em;
  font-size: 1.12rem;
}

.season-stars-wrap {
  position: relative;
  width: 110px;
  height: 20px;
  margin-top: 0.08rem;
}

.season-stars-base,
.season-stars-fill {
  position: absolute;
  inset: 0;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.09em;
}

.season-stars-base {
  color: #364159;
}

.season-stars-fill {
  color: #f0cb5f;
  width: 0%;
}

.season-votes {
  color: #aab5ca;
  font-size: 0.95rem;
}

.season-like-group {
  display: flex;
  gap: 0.64rem;
}

.rate-chip {
  border: 1px solid rgba(240, 80, 112, 0.34);
  border-radius: 999px;
  padding: 0.4rem 0.92rem;
  font-weight: 700;
  background: rgba(240, 80, 112, 0.12);
  color: #f6f7fb;
  cursor: pointer;
}

.rate-chip.active {
  border-color: rgba(240, 80, 112, 0.74);
  background: rgba(240, 80, 112, 0.3);
}

.rate-chip:disabled {
  opacity: 0.72;
  cursor: default;
}

.page-rating-status {
  width: 100%;
  color: #9fb0cc;
  font-size: 0.9rem;
}

.page-rating-status.error {
  color: #ff8b9f;
}

.page-rating-status.success {
  color: #9fdfb0;
}

.season-episodes-title {
  margin-bottom: 0.86rem;
}

.season-episodes-grid {
  display: grid;
  gap: 0.92rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.episode-season-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(22, 30, 48, 0.95);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.episode-season-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 80, 112, 0.55);
}

.episode-season-card.current {
  border-color: rgba(240, 80, 112, 0.78);
  box-shadow: 0 0 0 1px rgba(240, 80, 112, 0.35);
}

.episode-link {
  display: block;
  color: inherit;
}

.episode-season-thumb {
  position: relative;
}

.episode-season-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ep-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  border-radius: 999px;
  background: #d84766;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.14rem 0.66rem;
  text-transform: uppercase;
}

.episode-season-body {
  padding: 0.76rem 0.86rem 0.84rem;
}

.episode-season-title {
  margin: 0;
  font-size: 1.05rem;
}

.season-anchor {
  scroll-margin-top: 90px;
}

.comments-empty {
  margin: 0 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 28, 45, 0.82);
  color: #aeb9cf;
  text-align: center;
  padding: 0.84rem;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0.74rem;
  margin-bottom: 1rem;
}

.comments-section .section-title em {
  font-style: normal;
  color: #f08aa1;
}

.comment-item {
  display: flex;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 28, 45, 0.82);
  padding: 0.8rem;
}

.comment-item.reply {
  margin-top: 0.55rem;
  margin-left: 1rem;
  background: rgba(18, 24, 38, 0.86);
}

.comment-avatar {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(240, 80, 112, 0.34);
  background: rgba(240, 80, 112, 0.12);
  display: grid;
  place-items: center;
}

.comment-avatar::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240, 80, 112, 0.74);
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.comment-author {
  color: #f08aa1;
  font-weight: 700;
}

.comment-date {
  color: #98a4b9;
  font-size: 0.88rem;
}

.comment-text {
  margin: 0.5rem 0 0.54rem;
  color: #dce4f2;
}

.comment-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-actions button {
  border: 1px solid rgba(205, 60, 86, 0.3);
  border-radius: 999px;
  background: rgba(240, 80, 112, 0.1);
  color: #d9e1f0;
  padding: 0.24rem 0.58rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.comment-actions button:disabled {
  opacity: 0.7;
  cursor: default;
}

.comment-actions .active-like,
.comment-actions .active-dislike {
  border-color: rgba(240, 80, 112, 0.72);
  background: rgba(240, 80, 112, 0.26);
}

.comment-reply {
  margin-left: auto;
}

.reply-context {
  margin-bottom: 0.52rem;
  color: #f08aa1;
  font-size: 0.9rem;
}

.reply-context a {
  color: #f08aa1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.reply-cancel {
  margin-left: 0.45rem;
  border: 1px solid rgba(240, 80, 112, 0.32);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background: transparent;
  color: #d7dfef;
  cursor: pointer;
}

.comment-form-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(21, 29, 47, 0.94);
  padding: 1rem;
}

.comment-form-box h3 {
  margin-top: 0;
}

.field-label {
  display: block;
  color: #d8dfeb;
  font-weight: 700;
  margin: 0.65rem 0 0.34rem;
}

.field-label .required {
  color: #f06280;
}

.season-input,
.season-textarea {
  width: 100%;
  border: 1px solid rgba(205, 62, 87, 0.25);
  border-radius: 10px;
  background: #080d17;
  color: #e8edf5;
  font: inherit;
  padding: 0.74rem 0.9rem;
}

.season-textarea {
  min-height: 158px;
  resize: vertical;
}

.captcha-row {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.captcha-question {
  border: 1px solid rgba(240, 80, 112, 0.4);
  background: rgba(240, 80, 112, 0.1);
  color: #f5829b;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.7rem 0.9rem;
}

.captcha-answer {
  width: 180px;
}

.captcha-error {
  color: #ff8b9f;
  font-size: 0.9rem;
}

.consent-row {
  margin-top: 0.72rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #b5c0d2;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.submit-comment {
  margin-top: 0.84rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #7f3547, #914257);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.86rem 1rem;
  cursor: pointer;
}

.submit-comment:hover {
  filter: brightness(1.08);
}

.comment-form-status {
  margin-top: 0.55rem;
  color: #9fb0cc;
  font-size: 0.9rem;
}

.comment-form-status.error {
  color: #ff8b9f;
}

.comment-form-status.success {
  color: #9fdfb0;
}

.season-cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.season-link-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(20, 29, 46, 0.94);
  overflow: hidden;
}

.season-link-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.season-link-card .card-cap {
  padding: 0.78rem 0.84rem 0.88rem;
}

.season-link-card .card-cap h3 {
  margin: 0;
  font-size: 1.14rem;
}

.season-link-card .card-cap p {
  margin: 0.26rem 0 0;
  color: #b9c4d6;
}

.similar-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.similar-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(20, 29, 46, 0.94);
}

.similar-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.similar-body {
  padding: 0.76rem 0.84rem;
}

.similar-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.similar-body p {
  margin: 0.32rem 0 0;
  color: #b8c3d7;
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .main-nav a {
    font-size: 0.72rem;
    padding: 0.38rem 0.44rem;
  }

  .hero,
  .char-hero {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .char-bio-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .season-episodes-grid,
  .season-cards-grid,
  .similar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-player-frame iframe {
    height: 460px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .brand-mark {
    font-size: 1.45rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin: 0;
    padding-top: 0.58rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: left;
    font-size: 0.83rem;
    padding: 0.52rem 0.6rem;
  }

  .header-row {
    min-height: 64px;
    flex-wrap: wrap;
    padding: 0.52rem 0;
  }

  .mt-row {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .info-row,
  .char-info-row {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .info-value,
  .char-info-value {
    text-align: left;
  }

  .grid.cols-2,
  .grid.cols-3,
  .gallery-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .section,
  .hero,
  .char-hero {
    padding: 1rem;
  }

  .season-hero {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .season-player-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .season-episodes-grid,
  .season-cards-grid,
  .similar-grid {
    grid-template-columns: 1fr;
  }

  .season-player-frame iframe {
    height: 260px;
  }
}
