:root {
  --bg: #fff3e4;
  --bg-soft: #ffe3c2;
  --panel: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 236, 214, 0.95));
  --panel-strong: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 227, 192, 0.95));
  --paper: #442314;
  --muted: #8f6146;
  --line: rgba(227, 92, 31, 0.24);
  --accent: #e35c1f;
  --accent-strong: #f06e26;
  --accent-soft: rgba(227, 92, 31, 0.18);
  --gold: #e96722;
  --shadow: 0 22px 50px rgba(227, 92, 31, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 50% 24%, #ff9b25 0%, #ff8518 34%, #f06812 62%, #d65110 84%, #a93e11 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(255, 223, 175, 0.42) 0 2.3px, transparent 2.9px),
    radial-gradient(circle, rgba(255, 223, 175, 0.18) 0 1.2px, transparent 1.9px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
  mask-image: radial-gradient(circle at 78% 12%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.94) 24%, rgba(0, 0, 0, 0.62) 42%, transparent 62%);
  opacity: 0.95;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(126, 42, 12, 0.24) 0 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255, 216, 160, 0.08) 0 0.9px, transparent 1.5px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.18) 48%, transparent 70%);
  opacity: 0.72;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 245, 236, 0.96), rgba(255, 224, 190, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(255, 106, 31, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.section-heading h2,
.hero-copy h2,
.spotlight-copy h1,
.series-sign-copy h2,
.card-title,
.slide-copy h3,
.series-card-copy h3 {
  font-family: "Russo One", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.topnav a:hover,
.topnav a.is-active,
.topnav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
}

.spotlight-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 24px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(227, 92, 31, 0.26), transparent 28%),
    radial-gradient(circle at top left, rgba(233, 103, 34, 0.28), transparent 22%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.series-page-section {
  margin-bottom: 34px;
}

.spotlight-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.spotlight-copy {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.spotlight-copy h1 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
  margin-inline: auto;
}

.spotlight-copy p:last-child {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-copy,
.hero-media,
.catalog-section,
.info-strip article,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  line-height: 1.04;
}

.hero-text,
.section-heading p,
.info-strip p,
.launch-note p,
.card-description,
.slide-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(227, 92, 31, 0.28);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(227, 92, 31, 0.22);
  background: rgba(255, 236, 217, 0.94);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(227, 92, 31, 0.18);
  background: rgba(255, 239, 220, 0.96);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 1.4rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.94rem;
}

.launch-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 106, 31, 0.14), rgba(255, 199, 87, 0.08));
  border: 1px solid rgba(255, 199, 87, 0.18);
}

.launch-note p {
  margin: 10px 0 0;
}

.launch-tag,
.slide-tag,
.card-issue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-tag {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero-media {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(227, 92, 31, 0.28), transparent 28%),
    var(--panel-strong);
}

.hero-stack {
  position: relative;
  min-height: 520px;
}

.hero-poster {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(227, 92, 31, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-poster img,
.card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-poster-main {
  width: min(72%, 360px);
  aspect-ratio: 10 / 14;
}

.hero-poster-side {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(46%, 240px);
  aspect-ratio: 10 / 14;
  transform: rotate(10deg);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.info-strip article {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.info-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.info-strip p {
  margin: 0;
}

.catalog-section {
  margin-bottom: 34px;
  padding: 32px;
  border-radius: var(--radius-xl);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 14px 0 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.comic-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(227, 92, 31, 0.16);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 234, 210, 0.96));
}

.card-cover {
  position: relative;
  aspect-ratio: 10 / 14;
  background: rgba(255, 233, 208, 0.94);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(227, 92, 31, 0.4), transparent);
}

.card-issue {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  color: #fff;
  background: rgba(227, 92, 31, 0.94);
  backdrop-filter: blur(12px);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
}

.card-title {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.card-description {
  margin: 0;
  min-height: 3.9em;
  font-size: 0.96rem;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-price strong {
  font-size: 1.4rem;
}

.card-price span {
  color: var(--muted);
  font-size: 0.84rem;
}

.card-button {
  border: 1px solid rgba(227, 92, 31, 0.24);
  color: var(--accent);
  background: rgba(255, 242, 228, 0.96);
  cursor: not-allowed;
}

.slider-buttons {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  transform: translateX(-50%);
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: scale(1.05);
  background: none;
}

.slider-arrow {
  width: 72px;
  height: 32px;
  overflow: visible;
}

.slider-arrow-outline,
.slider-arrow-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow-outline {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 11;
}

.slider-arrow-fill {
  stroke: #18110c;
  stroke-width: 7.5;
}

.news-slider {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 72px;
  border-radius: 30px;
  border: 1px solid rgba(227, 92, 31, 0.2);
}

.news-track {
  display: flex;
  transition: transform 360ms ease;
}

.news-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 620px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: #ffead2;
}

.news-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(82, 25, 8, 0.52) 0%, rgba(82, 25, 8, 0.22) 32%, rgba(82, 25, 8, 0.06) 58%, rgba(82, 25, 8, 0.3) 100%),
    linear-gradient(to top, rgba(64, 20, 7, 0.26), rgba(64, 20, 7, 0.02) 42%, rgba(64, 20, 7, 0.12) 100%);
}

.news-slide--contain {
  background: #ffffff;
}

.news-slide--contain::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%, rgba(70, 32, 16, 0.14) 100%),
    linear-gradient(to top, rgba(70, 32, 16, 0.12), rgba(70, 32, 16, 0.02) 42%, rgba(255, 255, 255, 0.02) 100%);
}

.news-slide--contain .slide-copy {
  width: min(100%, 1120px);
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "tag title"
    "text text";
  align-items: center;
  column-gap: 14px;
  row-gap: 12px;
  margin-top: auto;
  margin-left: 0;
  padding-left: 28px;
  padding-bottom: 22px;
  transform: none;
}

.news-slide--contain .slide-copy h3 {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.04;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
}

.news-slide--contain .slide-copy p {
  max-width: none;
  color: #6a3f25;
  text-shadow: none;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
}

.news-slide--contain .slide-tag {
  min-width: 96px;
  min-height: 42px;
  align-self: center;
  justify-self: start;
  color: #fff;
}

.news-slide--ponkast .slide-copy {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: min(46%, 500px);
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "text"
    "button";
  justify-items: end;
  align-items: end;
  row-gap: 14px;
  margin: 0;
  padding-left: 0;
  padding-bottom: 0;
  text-align: right;
}

.news-slide--ponkast .slide-copy h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: #442314;
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.95),
    2px -2px 0 rgba(255, 255, 255, 0.95),
    -2px 2px 0 rgba(255, 255, 255, 0.95),
    2px 2px 0 rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.35);
}

.news-slide--ponkast .slide-copy p {
  max-width: 46ch;
  color: #6f4126;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.92),
    1px -1px 0 rgba(255, 255, 255, 0.92),
    -1px 1px 0 rgba(255, 255, 255, 0.92),
    1px 1px 0 rgba(255, 255, 255, 0.92),
    0 0 12px rgba(255, 255, 255, 0.25);
}

.slide-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(227, 92, 31, 0.26);
}

.slide-media {
  position: absolute;
  inset: 0;
}

.slide-media--contain::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 186px;
  height: 26px;
  background: #ffffff;
  pointer-events: none;
}

.slide-media-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
}

.slide-media-grid-item {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(227, 92, 31, 0.18);
  background: rgba(255, 245, 234, 0.78);
  box-shadow: var(--shadow);
}

.slide-media-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slide-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slide-media--contain img {
  object-fit: contain;
  object-position: center top;
  padding: 36px 64px 210px;
  background: #ffffff;
}

.slide-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "tag title"
    "tag text";
  align-items: end;
  column-gap: 22px;
  row-gap: 6px;
  width: min(100%, 760px);
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.slide-tag {
  grid-area: tag;
  align-self: start;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.slide-copy h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.08;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #442314;
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.95),
    2px -2px 0 rgba(255, 255, 255, 0.95),
    -2px 2px 0 rgba(255, 255, 255, 0.95),
    2px 2px 0 rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.35);
}

.slide-copy p {
  grid-area: text;
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #6f4126;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.92),
    1px -1px 0 rgba(255, 255, 255, 0.92),
    -1px 1px 0 rgba(255, 255, 255, 0.92),
    1px 1px 0 rgba(255, 255, 255, 0.92),
    0 0 12px rgba(255, 255, 255, 0.25);
}

.pp-stage,
.footer--series {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(35, 37, 43, 0.97), rgba(16, 17, 20, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.pp-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 40px 32px 36px;
  border-radius: 34px;
  color: #f6f1ea;
  background:
    linear-gradient(90deg, #121316 0%, #30333a 16%, #4b4f57 50%, #30333a 84%, #121316 100%);
}

.pp-stage::before {
  content: none;
}

.pp-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.48) 0 1.7px, transparent 2.2px),
    radial-gradient(circle, rgba(0, 0, 0, 0.26) 0 1px, transparent 1.6px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
  z-index: 0;
  pointer-events: none;
}

.pp-antifreeze-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.pp-sign-wrap,
.pp-intro,
.pp-grid {
  position: relative;
  z-index: 2;
}

.pp-sign-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.pp-sign,
.pp-sign-overlay {
  width: min(100%, 740px);
  height: auto;
  display: block;
}

.pp-sign {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.pp-sign-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.pp-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.pp-eyebrow {
  margin: 0 0 10px;
  color: #ef6d24;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pp-intro p:last-child {
  margin: 0;
  color: #b8b3ab;
  line-height: 1.65;
}

.pp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pp-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(44, 46, 53, 0.96), rgba(22, 23, 26, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.pp-card-cover {
  aspect-ratio: 10 / 14;
  background: rgba(10, 10, 12, 0.78);
}

.pp-card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pp-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1 1 auto;
}

.pp-card-copy span {
  color: #ef6d24;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pp-card-copy h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.18;
  font-family: "Russo One", sans-serif;
}

.pp-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.pp-card-meta strong {
  color: #ef6d24;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
}

.pp-card-meta small {
  color: #b8b3ab;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  padding: 0 12px;
  border: 1px solid rgba(239, 109, 36, 0.38);
  border-radius: 12px;
  color: #fffaf2;
  background: linear-gradient(135deg, #ef6d24, #c94716);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pp-pay-button:hover,
.pp-pay-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.25);
}

.pp-card--coming {
  grid-column: 3;
}

.pp-card-copy--coming {
  align-items: center;
  justify-content: center;
  min-height: 74px;
}

.pp-card-copy--coming p {
  margin: 0;
  color: #f6f1ea;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.gg-stage {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 40px 32px 36px;
  border: 1px solid rgba(94, 76, 24, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle, rgba(126, 91, 10, 0.18) 0 1.5px, transparent 2.2px),
    radial-gradient(circle, rgba(255, 248, 197, 0.32) 0 1px, transparent 1.7px),
    linear-gradient(180deg, #e4bf44 0%, #d7a927 100%);
  background-size: 22px 22px, 22px 22px, auto;
  background-position: 0 0, 11px 11px, center;
  box-shadow: 0 24px 54px rgba(104, 72, 12, 0.18);
}

.gg-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.gg-logo {
  width: min(100%, 740px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(83, 58, 9, 0.22));
}

.gg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
  justify-content: center;
  gap: 18px;
}

.gg-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(70, 48, 8, 0.18);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(86, 62, 12, 0.96), rgba(37, 28, 8, 0.98));
  box-shadow: 0 18px 34px rgba(84, 57, 8, 0.24);
}

.gg-card-cover {
  aspect-ratio: 10 / 14;
  background: rgba(55, 39, 8, 0.76);
}

.gg-card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gg-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1 1 auto;
}

.gg-card-copy h3 {
  margin: 0;
  color: #fff7d5;
  font-size: 1rem;
  line-height: 1.18;
  font-family: "Russo One", sans-serif;
}

.gg-card-copy p {
  margin: 0;
  color: #ffc72f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.footer--series {
  color: #f6f1ea;
  background: linear-gradient(180deg, rgba(35, 37, 43, 0.97), rgba(16, 17, 20, 0.98));
}

.footer--series p {
  color: #b8b3ab;
}

body.has-payment-modal {
  overflow: hidden;
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
}

.payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 12, 5, 0.72);
  backdrop-filter: blur(10px);
}

.payment-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 215, 176, 0.54);
  border-radius: 24px;
  color: #442314;
  background: linear-gradient(180deg, #fff9f1, #ffe1c0);
  box-shadow: 0 30px 80px rgba(18, 7, 2, 0.42);
}

.payment-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(68, 35, 20, 0.14);
  border-radius: 50%;
  color: #442314;
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.payment-modal__eyebrow {
  margin: 0 46px 8px 0;
  color: #e35c1f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-modal h2 {
  margin: 0;
  padding-right: 42px;
  font-family: "Russo One", sans-serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

.payment-modal__description {
  margin: 12px 0 18px;
  color: #7b5038;
  font-weight: 800;
  line-height: 1.45;
}

.payment-modal__hint {
  color: #8f6146;
  font-size: 0.88rem;
  line-height: 1.5;
}

.payment-modal__actions {
  display: block;
  margin-top: 16px;
}

.payment-modal__pay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.payment-modal__pay-link {
  border: 1px solid rgba(227, 92, 31, 0.26);
  color: #fff;
  background: linear-gradient(135deg, #e35c1f, #f06e26);
}

.payment-modal__pay-link.is-disabled {
  color: #a17a62;
  background: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}

.payment-modal__hint {
  margin: 14px 0 0;
}

.payment-modal__hint a {
  color: #e35c1f;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.series-section {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 34px;
}

.series-hero {
  display: flex;
  justify-content: center;
}

.series-sign {
  position: relative;
  width: min(100%, 760px);
  overflow: visible;
}

.series-sign::before,
.series-sign::after {
  content: none;
}

.series-sign-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(88, 26, 8, 0.2));
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.series-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 236, 0.32);
  border-radius: 28px;
  background: rgba(255, 248, 240, 0.96);
  box-shadow: var(--shadow);
}

.series-card-cover {
  position: relative;
  aspect-ratio: 10 / 14;
  background: rgba(255, 255, 255, 0.78);
}

.series-card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.series-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1 1 auto;
}

.series-card-copy span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.series-card-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.15;
}

.series-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.series-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.series-card-meta strong {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.series-card-meta small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.series-card--coming {
  grid-column: 3;
}

.series-card-copy--coming {
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.series-card-copy--coming p {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .spotlight-header {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-media {
    order: -1;
  }

  .hero-poster-main {
    width: min(70%, 320px);
  }

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

  .series-card--coming {
    grid-column: 2;
  }

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

  .pp-card--coming {
    grid-column: 2;
  }

}

@media (max-width: 820px) {
  .topbar,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    top: 10px;
    gap: 14px;
    border-radius: 26px;
  }

  .brand {
    justify-content: center;
  }

  .brand-copy {
    min-width: 0;
  }

  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .topnav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 8px;
    font-size: 0.84rem;
    line-height: 1.12;
    text-align: center;
  }

  .slider-buttons {
    justify-content: center;
  }

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

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

  .info-strip {
    grid-template-columns: 1fr;
  }

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

  .news-slide {
    min-height: 520px;
    padding: 22px;
  }

  .news-slider {
    border-radius: 26px;
  }

  .slide-media-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .slide-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "text";
    width: 100%;
    row-gap: 10px;
  }

  .news-slide--contain .slide-copy {
    width: 100%;
    grid-template-columns: 1fr;
    transform: translateY(0);
    padding-left: 0;
    padding-bottom: 8px;
  }

  .news-slide--ponkast .slide-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    text-align: left;
    justify-items: start;
    align-items: start;
  }

  .slide-link-button {
    max-width: 100%;
    min-height: 42px;
    padding: 0 14px;
    line-height: 1.15;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding-top: 10px;
    padding-bottom: 36px;
  }

  .topbar {
    top: 8px;
    margin-bottom: 18px;
    padding: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .topnav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .topnav a {
    min-height: 40px;
    padding: 7px 6px;
    font-size: 0.76rem;
  }

  .topbar,
  .spotlight-section,
  .pp-stage,
  .gg-stage,
  .series-sign,
  .series-card,
  .pp-card,
  .gg-card,
  .hero-copy,
  .hero-media,
  .catalog-section,
  .info-strip article,
  .footer {
    border-radius: 22px;
  }

  .spotlight-section,
  .pp-stage,
  .gg-stage,
  .hero-copy,
  .hero-media,
  .catalog-section {
    padding: 18px;
  }

  .spotlight-copy h1 {
    max-width: 18ch;
    font-size: clamp(1.8rem, 9.4vw, 2.7rem);
    line-height: 1.04;
  }

  .hero-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .series-sign {
    width: min(100%, 620px);
  }

  .hero-stack {
    min-height: 420px;
  }

  .hero-poster-main {
    width: min(74%, 280px);
  }

  .hero-poster-side {
    width: min(48%, 180px);
  }

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

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

  .pp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gg-grid {
    grid-template-columns: minmax(190px, 240px);
    gap: 12px;
  }

  .series-card--coming {
    grid-column: auto;
  }

  .pp-card--coming {
    grid-column: auto;
  }

  .news-slide {
    min-height: 500px;
    padding: 14px;
  }

  .news-slider {
    padding-bottom: 58px;
  }

  .slider-buttons {
    bottom: 10px;
    gap: 26px;
  }

  .slider-button {
    width: 68px;
    height: 36px;
  }

  .slider-arrow {
    width: 62px;
    height: 28px;
  }

  .slide-copy {
    padding: 12px;
    row-gap: 8px;
  }

  .slide-tag {
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .slide-copy h3 {
    font-size: 1rem;
    line-height: 1.08;
  }

  .slide-copy p {
    font-size: 0.82rem;
    line-height: 1.42;
    -webkit-line-clamp: 4;
  }

  .slide-media--contain img {
    padding: 24px 16px 170px;
  }

  .slide-media--contain::after {
    left: 8%;
    right: 8%;
    bottom: 156px;
    height: 18px;
  }

  .pp-stage {
    padding: 24px 16px 20px;
  }

  .gg-stage {
    min-height: 620px;
    padding: 24px 16px 20px;
  }

  .pp-sign,
  .pp-sign-overlay {
    width: 100%;
  }

  .pp-sign-wrap {
    margin-bottom: 16px;
  }

  .pp-intro {
    margin-bottom: 18px;
  }

  .pp-card-copy,
  .gg-card-copy {
    padding: 12px;
    gap: 7px;
  }

  .pp-card-copy span {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .pp-card-copy h3,
  .gg-card-copy h3 {
    font-size: 0.84rem;
    line-height: 1.14;
  }

  .pp-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .pp-card-meta strong {
    font-size: 0.9rem;
  }

  .pp-card-meta small {
    font-size: 0.62rem;
  }

  .pp-pay-button {
    min-height: 40px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .payment-modal {
    padding: 14px;
  }

  .payment-modal__panel {
    max-height: calc(100vh - 28px);
    padding: 22px 18px;
    border-radius: 20px;
  }

  .payment-modal h2 {
    font-size: 1.18rem;
  }

  .gg-logo-wrap {
    margin-bottom: 24px;
  }

  .gg-logo {
    width: min(100%, 560px);
  }

  .gg-card-copy p {
    font-size: 0.9rem;
  }

  .card-description {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .topnav {
    grid-template-columns: 1fr;
  }

  .topnav a {
    min-height: 36px;
  }

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

  .pp-card {
    width: min(100%, 260px);
    justify-self: center;
  }

  .news-slide {
    min-height: 470px;
  }

  .news-slide--ponkast .slide-copy {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 18px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .news-track,
  .slider-button,
  .topnav a {
    transition: none;
  }
}
