
:root {
  --bg: #17091b;
  --bg-2: #26102b;
  --panel: rgba(49, 18, 55, .82);
  --panel-solid: #2b112f;
  --panel-soft: rgba(95, 38, 96, .48);
  --text: #fff3fb;
  --muted: #e8c5e6;
  --dim: #b892bd;
  --line: rgba(255, 198, 242, .18);
  --pink: #ff7bbf;
  --pink-2: #ffb1d1;
  --violet: #bd7df1;
  --violet-2: #d9a7ff;
  --gold: #ffd7a8;
  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
  --radius: 22px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(181, 79, 255, .26), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(255, 100, 190, .18), transparent 26rem),
    linear-gradient(180deg, #220d26 0%, #110614 48%, #1a0a1d 100%);
  line-height: 1.65;
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  z-index: 2000;
  background: #fff;
  color: #111;
  border-radius: 10px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 18px 0;
  pointer-events: none;
}
.nav-shell {
  width: min(100%, 900px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}
.nav-tabs {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 11px;
  overflow: hidden;
  background: rgba(45, 12, 39, .80);
  box-shadow: 0 10px 34px rgba(0,0,0,.30);
  border: 1px solid rgba(255, 212, 244, .10);
  backdrop-filter: blur(10px);
}
.nav-tabs a {
  padding: 10px 18px 9px;
  font-size: 17px;
  letter-spacing: .02em;
  color: #f7c7e7;
  border-right: 1px solid rgba(255, 215, 245, .14);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.nav-tabs a:last-child { border-right: 0; }
.nav-tabs a[aria-current="page"], .nav-tabs a:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff0fb;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(45, 12, 39, .80);
  border: 1px solid rgba(255, 212, 244, .12);
  box-shadow: 0 10px 34px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.language-switch a {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 6px;
  border-radius: 7px;
}
.language-switch a.active { background: rgba(255,255,255,.1); color: #fff; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 112px 0 82px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(22, 7, 27, .48), rgba(15, 6, 20, .90)),
    radial-gradient(circle at 20% 18%, rgba(223, 87, 189, .22), transparent 28rem),
    radial-gradient(circle at 78% 22%, rgba(100, 80, 255, .20), transparent 30rem);
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 6, 20, .86) 0%, rgba(22, 8, 27, .78) 38%, rgba(22, 8, 27, .42) 68%, rgba(22,8,27,.58) 100%),
    linear-gradient(180deg, rgba(14, 7, 19, .18), rgba(14, 7, 19, .58));
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(23,9,27,0), #17091b 78%);
  pointer-events: none;
}
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; position: relative; z-index: 2; }
.logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 18px 0 8px;
}
.logo {
  display: inline-grid;
  gap: 0;
  line-height: .83;
  min-width: 280px;
}
.logo-small {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(58px, 9vw, 106px);
  color: #ffd8ed;
  font-weight: 400;
  letter-spacing: .01em;
  text-shadow: 0 0 18px rgba(255, 122, 218, .75), 0 0 48px rgba(177, 113, 255, .35);
}
.logo-big {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 7vw, 78px);
  color: #ffd5a9;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0,0,0,.4);
}
.download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  min-height: 64px;
  padding: 13px 16px 13px 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(55, 16, 55, .78), rgba(35, 15, 53, .72));
  border: 1px solid rgba(255, 211, 245, .14);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}
.download-strip span { color: var(--muted); font-size: 19px; font-weight: 600; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(180deg, #d392ff, #a66be0);
  font-weight: 800;
  letter-spacing: .015em;
  box-shadow: 0 12px 28px rgba(112, 44, 157, .38);
  border: 1px solid rgba(255,255,255,.18);
}
.btn:hover { transform: translateY(-1px); color: white; }
.btn.secondary { background: linear-gradient(180deg, rgba(255, 131, 204, .90), rgba(175, 83, 192, .92)); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  gap: 44px;
  align-items: center;
  margin-top: 52px;
}
.hero-copy { max-width: 700px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffd0ec;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.eyebrow:before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 5.1vw, 78px);
  line-height: 1.04;
  color: #ffd4ee;
  margin-bottom: 22px;
  letter-spacing: .01em;
  text-shadow: 0 6px 24px rgba(0,0,0,.42);
  max-width: 12ch;
}
h2 {
  font-size: clamp(31px, 4.4vw, 48px);
  line-height: 1.1;
  color: #ffc2e6;
  margin-bottom: 18px;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #ffdae9;
  margin-bottom: 10px;
}
p { color: var(--muted); font-size: 18px; margin-bottom: 18px; }
.lead { font-size: clamp(20px, 2.2vw, 24px); color: #ffe8f6; line-height: 1.5; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; margin-bottom: 28px; }
.video-card { display: none; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
}
.meta-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(58, 20, 67, .56), rgba(31, 13, 40, .78));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.meta-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 8, 28, .72);
  color: #ffd4ee;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.08);
}
.meta-card h3 {
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 8px;
}
.meta-card p { font-size: 16px; line-height: 1.55; margin-bottom: 0; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-media-card {
  width: min(100%, 560px);
  margin: 0;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(64, 25, 71, .72), rgba(28, 11, 38, .88));
  border: 1px solid rgba(255, 219, 249, .16);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .44);
  backdrop-filter: blur(8px);
}
.hero-media-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-tagline { display: none; }

main { position: relative; z-index: 3; }
.section { padding: 78px 0; position: relative; }
.section.tight { padding: 54px 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(67, 24, 71, .28), rgba(22, 8, 24, .08));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.section-head { max-width: 780px; margin-bottom: 32px; }
.kicker { color: var(--gold); font-size: 15px; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 8px; }
.panel {
  background: linear-gradient(180deg, rgba(55, 20, 61, .82), rgba(33, 12, 38, .86));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel-inner { padding: clamp(22px, 4vw, 40px); }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 26px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  background: rgba(60, 24, 64, .66);
  border: 1px solid rgba(255, 213, 247, .13);
  border-radius: 18px;
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.card p:last-child { margin-bottom: 0; }
.card .num { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.seasons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.season-card {
  padding: 21px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(113, 52, 119, .55), rgba(45, 18, 52, .78));
  border: 1px solid rgba(255, 211, 245, .12);
}
.season-card span { display: block; color: var(--gold); font-size: 13px; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 9px; }
.season-card p { font-size: 16px; margin: 0; color: #e9c9e7; }
.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.image-mosaic figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.image-mosaic img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .45s ease; }
.image-mosaic figure:hover img { transform: scale(1.04); }
.fact-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 16px; }
.fact-table th, .fact-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.09); vertical-align: top; }
.fact-table th { width: 34%; color: #ffd4e9; background: rgba(255,255,255,.05); font-weight: 700; }
.fact-table td { color: var(--muted); }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 18px;
  background: rgba(60, 24, 64, .66);
  border: 1px solid rgba(255, 213, 247, .13);
}
.step:before {
  counter-increment: step;
  content: counter(step);
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(180deg, var(--pink), var(--violet));
  box-shadow: 0 14px 28px rgba(153, 72, 184, .34);
}
.step p { margin-bottom: 0; }
.inline-link { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.inline-link:hover { color: #fff; border-color: #fff; }
.faq { display: grid; gap: 14px; }
details {
  background: rgba(60, 24, 64, .66);
  border: 1px solid rgba(255, 213, 247, .13);
  border-radius: 16px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #ffe1ef;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { padding: 0 22px 20px; margin: 0; }
.breadcrumbs {
  padding: 108px 0 0;
  color: var(--dim);
  font-size: 15px;
}
.breadcrumbs a { color: var(--muted); }
.page-hero {
  padding: 34px 0 84px;
  background-image: linear-gradient(180deg, rgba(31, 8, 34, .64), rgba(31, 8, 34, .82));
  background-size: cover;
  background-position: center top;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero .lead { max-width: 850px; }
.page-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.news-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(80, 30, 84, .62), rgba(38, 14, 43, .8));
  border: 1px solid rgba(255, 213, 247, .13);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card time { color: var(--gold); font-size: 14px; }
.news-card p { font-size: 16px; }
.age-note {
  color: #ffe8f5;
  background: rgba(255, 142, 200, .12);
  border: 1px solid rgba(255, 142, 200, .23);
  border-radius: 16px;
  padding: 18px 20px;
}
.site-footer {
  padding: 48px 0 30px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(13, 4, 15, .82);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--muted); }
.footer-small { color: var(--dim); font-size: 14px; margin: 8px 0 0; }
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 96px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-media-card { width: min(100%, 560px); }
  .hero-copy { max-width: none; }
  .hero-meta { grid-template-columns: 1fr; }
  .seasons, .grid-3, .news-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-row { justify-content: center; text-align: center; }
  .download-strip { justify-content: center; text-align: center; }
}
@media (max-width: 720px) {
  .site-header { padding: 8px 8px 0; }
  .nav-shell { gap: 8px; flex-direction: column; }
  .nav-tabs a { font-size: 14px; padding: 9px 10px; }
  .language-switch { padding: 5px 8px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .logo-small { font-size: 62px; }
  .logo-big { font-size: 42px; }
  .hero { padding-top: 122px; }
  .hero-grid { margin-top: 28px; }
  .download-strip { padding: 13px; }
  .hero-highlights { grid-template-columns: 1fr; }
  .video-card { border-radius: 16px; }
  .play-btn { width: 78px; height: 78px; border-width: 7px; }
  .play-btn:before { border-left-width: 24px; border-top-width: 17px; border-bottom-width: 17px; }
  .section { padding: 54px 0; }
  .grid-2, .grid-3, .seasons, .image-mosaic, .news-preview { grid-template-columns: 1fr; }
  .panel-inner, .card { padding: 20px; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .breadcrumbs { padding-top: 136px; }
  .page-hero { padding-top: 24px; }
}


/* v5 hero fix: no bitmap background, no stretched banner */
.hero {
  min-height: auto !important;
  padding: 118px 0 86px !important;
  background:
    radial-gradient(circle at 18% 15%, rgba(240, 111, 190, .26), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(146, 91, 255, .22), transparent 30rem),
    radial-gradient(circle at 56% 78%, rgba(255, 163, 211, .11), transparent 34rem),
    linear-gradient(135deg, #170719 0%, #2a0d28 42%, #14091f 100%) !important;
  background-image:
    radial-gradient(circle at 18% 15%, rgba(240, 111, 190, .26), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(146, 91, 255, .22), transparent 30rem),
    radial-gradient(circle at 56% 78%, rgba(255, 163, 211, .11), transparent 34rem),
    linear-gradient(135deg, #170719 0%, #2a0d28 42%, #14091f 100%) !important;
}
.hero:before {
  background:
    linear-gradient(90deg, rgba(13, 5, 17, .84) 0%, rgba(24, 8, 30, .64) 46%, rgba(24, 8, 30, .28) 100%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px) !important;
}
.hero:after {
  height: 190px !important;
  background: linear-gradient(180deg, rgba(23,9,27,0), #17091b 76%) !important;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .94fr) !important;
  gap: 48px !important;
  align-items: center !important;
}
.hero-copy {
  max-width: 720px !important;
}
.hero-copy h1 {
  max-width: 12.5ch !important;
}
.hero-visual {
  display: block !important;
}
.hero-shot-stack {
  display: grid !important;
  gap: 14px !important;
  width: min(100%, 600px) !important;
  margin-left: auto !important;
  padding: 16px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(64, 25, 71, .70), rgba(26, 10, 36, .88)) !important;
  border: 1px solid rgba(255, 219, 249, .16) !important;
  box-shadow: 0 28px 74px rgba(0,0,0,.40) !important;
  backdrop-filter: blur(8px) !important;
}
.hero-shot-main,
.hero-shot-grid img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.05) !important;
}
.hero-shot-main {
  aspect-ratio: auto !important;
}
.hero-shot-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
.hero-shot-grid img {
  border-radius: 16px !important;
}
.hero-media-card,
.hero-poster-card,
.hero-figure,
.hero-card-main,
.hero-card-row,
.hero-tagline {
  display: none !important;
}
.page-hero {
  background:
    radial-gradient(circle at 18% 15%, rgba(240, 111, 190, .20), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(146, 91, 255, .18), transparent 30rem),
    linear-gradient(135deg, #170719 0%, #2a0d28 42%, #14091f 100%) !important;
  background-image:
    radial-gradient(circle at 18% 15%, rgba(240, 111, 190, .20), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(146, 91, 255, .18), transparent 30rem),
    linear-gradient(135deg, #170719 0%, #2a0d28 42%, #14091f 100%) !important;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-shot-stack { margin: 0 auto !important; width: min(100%, 720px) !important; }
}
@media (max-width: 560px) {
  .hero-shot-grid { grid-template-columns: 1fr !important; }
  .hero-copy h1 { max-width: none !important; }
}
