:root {
  --bg: #080d13;
  --bg-soft: #0c121a;
  --surface: #111822;
  --surface-2: #151d28;
  --surface-3: #1b2532;
  --text: #f7f8fb;
  --muted: #929aa7;
  --muted-2: #b9c0ca;
  --border: #27313f;
  --border-soft: rgba(255,255,255,.08);
  --red: #ff2b13;
  --red-deep: #d91f0a;
  --teal: #00d3b5;
  --teal-deep: #00aa91;
  --yellow: #ffc300;
  --success: #38d792;
  --danger: #ff5a4a;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 55px rgba(0,0,0,.34);
  --header-h: 84px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,43,19,.07), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(0,211,181,.07), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(0,211,181,.28); color: #fff; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 9999;
  transform: translateY(-180%);
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(0,211,181,.9);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(8,13,19,.92);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 150px;
}
.brand img { width: 168px; height: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.header-nav a {
  position: relative;
  color: var(--muted-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  transition: right .2s ease;
}
.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { right: 0; }
.header-promo {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.header-promo span { color: var(--teal); }
.header-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  user-select: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, #ff351d, var(--red));
  color: #fff;
  box-shadow: 0 10px 26px rgba(255,43,19,.24);
}
.btn-primary:hover { background: #ff412b; box-shadow: 0 14px 34px rgba(255,43,19,.34); }
.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,43,19,.11); }
.btn-teal { background: var(--teal); color: #07110f; box-shadow: 0 12px 28px rgba(0,211,181,.2); }
.btn-teal:hover { background: #14e7c8; }
.btn-yellow { background: var(--yellow); color: #1a1300; }
.btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.btn-sm { min-height: 40px; padding: 9px 15px; font-size: 14px; }
.btn-lg { min-height: 54px; padding: 15px 28px; font-size: 17px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  margin: auto;
  position: relative;
  transition: .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 46px;
  border-bottom: 1px solid var(--border-soft);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(6px);
}
.hero::before {
  width: 620px;
  height: 620px;
  left: -390px;
  top: -250px;
  background: radial-gradient(circle, rgba(255,43,19,.16), transparent 68%);
}
.hero::after {
  width: 640px;
  height: 640px;
  right: -380px;
  top: -260px;
  background: radial-gradient(circle, rgba(0,211,181,.15), transparent 68%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 950px;
  margin: 0 auto 32px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(0,211,181,.3);
  border-radius: 999px;
  background: rgba(0,211,181,.08);
  color: #b9fff3;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 14px var(--teal); }
h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.16; letter-spacing: -.025em; }
h1 { font-size: clamp(38px, 5vw, 68px); font-weight: 950; text-transform: uppercase; }
h2 { font-size: clamp(30px, 3.8vw, 46px); font-weight: 900; }
h3 { font-size: clamp(21px, 2.5vw, 28px); font-weight: 860; }
h4 { font-size: 18px; }
.hero h1 { margin-top: 18px; text-shadow: 0 10px 36px rgba(0,0,0,.28); }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-lead { margin: 0 auto; max-width: 780px; color: var(--muted-2); font-size: clamp(16px, 2vw, 20px); }
.hero-actions { margin-top: 24px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; color: var(--muted); font-size: 12px; }
.hero-offers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  text-decoration: none;
  background: var(--surface);
  isolation: isolate;
}
.promo-card img { width: 100%; aspect-ratio: 1.62 / 1; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.promo-card::after {
  content: "Open offer";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(8,13,19,.82);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
}
.promo-card:hover img { transform: scale(1.025); filter: brightness(1.04); }
.promo-card:hover::after { opacity: 1; transform: translateY(0); }

.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--border-soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.section-head > div:first-child { max-width: 820px; }
.section-kicker { color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 9px; }
.section-copy { color: var(--muted-2); margin: 0; }

.slot-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.is-active { border-color: var(--teal); color: #fff; background: rgba(0,211,181,.1); }
.slider-controls { display: flex; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.icon-btn:hover { border-color: var(--teal); background: rgba(0,211,181,.08); }
.slot-viewport { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding: 3px 2px 14px; }
.slot-viewport::-webkit-scrollbar { display: none; }
.slot-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 16px;
}
.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  scroll-snap-align: start;
  min-width: 0;
}
.slot-card[hidden] { display: none; }
.slot-card > a { display: block; text-decoration: none; }
.slot-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .35s ease; }
.slot-card:hover { border-color: rgba(0,211,181,.55); }
.slot-card:hover img { transform: scale(1.035); }
.slot-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
}
.slot-card-footer strong { font-size: 14px; }
.slot-card-footer span { color: var(--muted); font-size: 12px; }
.play-chip { padding: 7px 11px; border-radius: 7px; background: var(--red); color: #fff !important; font-weight: 900; }

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  overflow: hidden;
}
.fact-item { padding: 20px; display: flex; align-items: center; gap: 13px; }
.fact-item + .fact-item { border-left: 1px solid var(--border); }
.fact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(0,211,181,.1); color: var(--teal); font-size: 20px; flex: 0 0 auto; }
.fact-item strong { display: block; font-size: 14px; }
.fact-item small { color: var(--muted); display: block; line-height: 1.35; }

.content-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: 34px; align-items: start; }
.prose { color: var(--muted-2); }
.prose p { margin: 0 0 18px; }
.prose strong { color: #fff; }
.prose a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.info-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.info-card-head { padding: 18px 20px; background: linear-gradient(90deg, rgba(255,43,19,.14), rgba(0,211,181,.08)); border-bottom: 1px solid var(--border); }
.info-card-head h3 { margin: 0; font-size: 20px; }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.info-table th { width: 42%; color: #fff; }
.info-table td { color: var(--muted-2); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

.conversion {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(120deg, rgba(255,43,19,.96), rgba(140,20,8,.96) 52%, rgba(8,13,19,.98) 52%),
    var(--surface);
  box-shadow: var(--shadow);
}
.conversion::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,211,181,.35), transparent 70%);
}
.conversion-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(260px,.7fr); gap: 30px; align-items: center; }
.conversion h2 { margin-bottom: 10px; }
.conversion p { margin: 0; color: rgba(255,255,255,.86); max-width: 720px; }
.conversion-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.meta-pill { border-radius: 999px; padding: 7px 11px; background: rgba(8,13,19,.25); border: 1px solid rgba(255,255,255,.18); font-size: 12px; font-weight: 800; }
.conversion-action { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.conversion-action .btn { width: 100%; }
.conversion small { color: rgba(255,255,255,.64); line-height: 1.4; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  min-height: 210px;
}
.step-number { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--teal); color: #03120f; font-weight: 950; margin-bottom: 18px; }
.step-card h3 { font-size: 21px; margin-bottom: 10px; }
.step-card p { color: var(--muted-2); margin: 0; }
.step-card::after { content: ""; position: absolute; left: 24px; right: 24px; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--teal), transparent); }

.app-install {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.7fr);
  gap: 28px;
  align-items: center;
}
.install-panel {
  position: relative;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 12%, rgba(0,211,181,.18), transparent 35%),
    #090f16;
  overflow: hidden;
}
.install-panel h2 { text-transform: uppercase; text-align: center; margin-bottom: 28px; }
.install-list { display: grid; gap: 10px; max-width: 660px; margin: 0 auto; }
.install-row {
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: #141b25;
}
.install-row-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; color: var(--teal); background: rgba(0,211,181,.09); font-size: 22px; }
.install-row strong { display: block; color: #fff; font-size: 14px; }
.install-row span { color: var(--muted-2); font-size: 14px; }
.phone-stage {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  border: 1px solid #3a4554;
  border-radius: 30px;
  padding: 10px;
  background: #111821;
  box-shadow: 0 26px 65px rgba(0,0,0,.45);
}
.phone-stage::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 70px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.25); z-index: 2; }
.phone-stage img { border-radius: 22px; width: 100%; }

.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.payment-card { border: 1px solid var(--border); background: var(--surface); border-radius: 16px; padding: 10px; transition: .2s ease; }
.payment-card:hover { transform: translateY(-3px); border-color: rgba(0,211,181,.5); }
.payment-card img { width: 100%; }
.payment-note { margin-top: 18px; color: var(--muted); font-size: 13px; }

.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bonus-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  padding: 24px;
}
.bonus-card::before { content: ""; position: absolute; inset: 0; opacity: .9; background: radial-gradient(circle at 90% 5%, rgba(0,211,181,.21), transparent 35%); }
.bonus-card.red::before { background: radial-gradient(circle at 90% 5%, rgba(255,43,19,.26), transparent 38%); }
.bonus-card.yellow::before { background: radial-gradient(circle at 90% 5%, rgba(255,195,0,.22), transparent 38%); }
.bonus-card > * { position: relative; z-index: 1; }
.bonus-label { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.08); color: var(--muted-2); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.bonus-value { font-size: clamp(38px, 5vw, 62px); font-weight: 950; line-height: 1; margin: 20px 0 12px; }
.bonus-card p { color: var(--muted-2); margin: 0 0 22px; }

.responsible-card {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(0,211,181,.24);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(0,211,181,.08), rgba(255,255,255,.018));
  padding: clamp(24px, 5vw, 48px);
}
.responsible-card img { width: 160px; margin: 0 auto; }
.responsible-card p { color: var(--muted-2); }
.resource-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.resource-link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; padding: 9px 12px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); color: #fff; font-weight: 800; font-size: 13px; }
.resource-link:hover { border-color: var(--teal); }

.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; }
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  text-align: left;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}
.faq-question span:last-child { color: var(--teal); font-size: 24px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted-2); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.editorial-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}
.editorial-avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--red), var(--teal)); font-weight: 950; }
.editorial-card h3 { font-size: 18px; margin: 0 0 4px; }
.editorial-card p { margin: 0; color: var(--muted); font-size: 13px; }
.editorial-card a { color: var(--teal); font-weight: 800; }

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #070b10;
  padding: 58px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 34px; }
.footer-brand img { width: 170px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 13px; max-width: 390px; }
.age-badge { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 2px solid #fff; border-radius: 50%; font-weight: 950; margin-right: 10px; }
.footer-title { font-weight: 900; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted-2); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--teal); }
.social-share { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.social-share a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); text-decoration: none; font-weight: 900; }
.social-share a:hover { border-color: var(--teal); color: var(--teal); }
.footer-disclaimer { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }
.footer-bottom { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #747d89; font-size: 12px; }

.mobile-dock { display: none; }
.desktop-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 160%);
  z-index: 900;
  width: min(calc(100% - 36px), 760px);
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(13,19,28,.94);
  box-shadow: 0 20px 60px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
  transition: transform .28s ease;
}
.desktop-sticky-cta.is-visible { transform: translate(-50%, 0); }
.desktop-sticky-copy { padding-left: 7px; }
.desktop-sticky-copy strong { display: block; font-size: 14px; }
.desktop-sticky-copy small { color: var(--muted); }
.sticky-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; color: var(--muted-2); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3,6,9,.82);
  backdrop-filter: blur(12px);
}
.modal.is-open { display: flex; }
.modal-card {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: #131b26;
  box-shadow: 0 34px 90px rgba(0,0,0,.65);
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(8,13,19,.75);
  cursor: pointer;
  font-size: 22px;
}
.age-card { width: min(100%, 560px); padding: 34px; text-align: center; }
.age-mark { width: 90px; height: 90px; display: grid; place-items: center; margin: 0 auto 18px; border: 5px solid var(--red); border-radius: 50%; font-size: 30px; font-weight: 950; }
.age-card p { color: var(--muted-2); }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.age-note { margin-top: 14px; color: var(--muted); font-size: 12px; }
.bonus-modal-content { display: grid; grid-template-columns: minmax(250px,.85fr) minmax(0,1.15fr); align-items: center; gap: 16px; padding: 30px; }
.bonus-modal-visual { padding: 8px; }
.bonus-modal-visual img { width: 100%; max-width: 320px; margin: auto; }
.bonus-modal-copy { padding-right: 12px; }
.bonus-modal-copy h2 { font-size: clamp(30px, 5vw, 48px); }
.bonus-modal-copy p { color: var(--muted-2); }
.bonus-modal-copy .btn { width: 100%; margin-top: 10px; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4500;
  display: none;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(calc(100% - 32px), 880px);
  margin-inline: auto;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(17,24,34,.97);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; color: var(--muted-2); font-size: 13px; }
.cookie-actions { display: flex; gap: 8px; }

.legal-hero {
  padding: 58px 0 42px;
  background: linear-gradient(180deg, rgba(255,43,19,.08), transparent);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.breadcrumbs a { color: var(--teal); text-decoration: none; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.legal-hero p { max-width: 780px; color: var(--muted-2); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 34px; align-items: start; }
.legal-nav { position: sticky; top: 108px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 14px; }
.legal-nav a { display: block; padding: 8px 9px; color: var(--muted-2); text-decoration: none; font-size: 13px; border-radius: 8px; }
.legal-nav a:hover { color: #fff; background: rgba(0,211,181,.08); }
.legal-content { min-width: 0; }
.legal-content section { margin-bottom: 34px; }
.legal-content h2 { font-size: 30px; margin-bottom: 12px; }
.legal-content h3 { font-size: 21px; margin-top: 24px; }
.legal-content p, .legal-content li { color: var(--muted-2); }
.legal-content table { width: 100%; border-collapse: collapse; }
.legal-content th, .legal-content td { border: 1px solid var(--border); padding: 12px; text-align: left; vertical-align: top; }
.notice { border-left: 4px solid var(--teal); background: rgba(0,211,181,.08); padding: 14px 16px; border-radius: 0 10px 10px 0; color: var(--muted-2); }
.warning { border-left-color: var(--red); background: rgba(255,43,19,.08); }

.contact-form { display: grid; gap: 14px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); padding: 22px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 800; font-size: 13px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0c121a;
  color: #fff;
  padding: 12px 13px;
}
.field textarea { min-height: 150px; resize: vertical; }

.go-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: radial-gradient(circle at 50% 20%, rgba(0,211,181,.12), transparent 30rem), var(--bg); }
.go-card { width: min(100%, 560px); text-align: center; padding: 34px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); }
.go-card img { width: 190px; margin: 0 auto 18px; }
.go-spinner { width: 52px; height: 52px; margin: 22px auto; border: 5px solid rgba(255,255,255,.12); border-top-color: var(--teal); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1160px) {
  .header-promo { display: none; }
  .header-inner { grid-template-columns: auto minmax(0,1fr) auto; gap: 18px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  body { padding-bottom: 72px; }
  .site-header { position: sticky; }
  .header-inner { grid-template-columns: auto 1fr auto auto; gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 130px; }
  .nav-toggle { display: block; order: 3; }
  .header-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(8,13,19,.98);
    border-bottom: 1px solid var(--border);
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { padding: 11px 5px; border-bottom: 1px solid var(--border-soft); }
  .header-nav a::after { display: none; }
  .header-actions { order: 2; justify-self: end; }
  .header-actions .btn { min-height: 42px; padding: 9px 14px; font-size: 13px; }
  .hero { padding-top: 48px; }
  .hero-offers { grid-template-columns: 1fr; }
  .hero-copy { margin-bottom: 26px; }
  .facts-strip { grid-template-columns: 1fr 1fr; }
  .fact-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .fact-item:nth-child(4) { border-top: 1px solid var(--border); }
  .content-grid, .app-install, .conversion-inner { grid-template-columns: 1fr; }
  .conversion { background: linear-gradient(160deg, rgba(255,43,19,.96), rgba(110,16,7,.98) 54%, rgba(8,13,19,.98) 54%); }
  .steps, .bonus-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr 1fr 1fr; }
  .responsible-card { grid-template-columns: 130px minmax(0,1fr); }
  .responsible-card img { width: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .desktop-sticky-cta { display: none; }
  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 70px;
    padding: 7px 8px max(7px, env(safe-area-inset-bottom));
    background: rgba(8,13,19,.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(18px);
  }
  .dock-link { display: grid; place-items: center; align-content: center; gap: 2px; color: var(--muted); text-decoration: none; font-size: 10px; font-weight: 800; }
  .dock-link span:first-child { font-size: 21px; line-height: 1; }
  .dock-link.center span:first-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #07110f; border: 4px solid var(--teal); font-weight: 950; }
  .dock-link:hover, .dock-link:focus { color: #fff; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; gap: 5px; overflow-x: auto; white-space: nowrap; }
  .bonus-modal-content { grid-template-columns: 1fr; text-align: center; }
  .bonus-modal-visual img { max-width: 220px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .site-header { min-height: 68px; }
  .header-inner { min-height: 68px; grid-template-columns: auto 1fr auto; gap: 8px; }
  .brand img { width: 116px; }
  .nav-toggle { width: 40px; height: 40px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { min-height: 40px; padding: 8px 11px; font-size: 12px; }
  .header-actions .btn-outline { display: none; }
  h1 { font-size: 37px; }
  h2 { font-size: 30px; }
  .hero { padding: 36px 0 30px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { min-width: 0; padding-inline: 12px; }
  .promo-card { border-radius: 15px; }
  .promo-card::after { display: none; }
  .section { padding: 56px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 22px; }
  .slot-toolbar { align-items: start; flex-direction: column; }
  .slider-controls { display: none; }
  .slot-grid { grid-auto-columns: 78vw; gap: 12px; }
  .facts-strip { grid-template-columns: 1fr; }
  .fact-item + .fact-item { border-left: 0; border-top: 1px solid var(--border); }
  .conversion { padding: 26px 20px; border-radius: 20px; }
  .steps { gap: 12px; }
  .step-card { min-height: 0; }
  .install-panel { padding: 22px 14px; }
  .install-row { grid-template-columns: 40px minmax(0,1fr); }
  .install-row .btn { grid-column: 1 / -1; width: 100%; }
  .payments-grid { grid-template-columns: 1fr 1fr; }
  .responsible-card { grid-template-columns: 1fr; text-align: center; }
  .resource-links { justify-content: center; }
  .editorial-card { grid-template-columns: auto minmax(0,1fr); }
  .editorial-card > :last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .age-card { padding: 28px 20px; }
  .age-actions { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; bottom: 82px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .legal-hero { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* 2026 visual refresh: generated promotional artwork, real slot titles, and app guide. */
.promo-card img { aspect-ratio: 19 / 7; }
.slot-card img { aspect-ratio: 1 / 1; }
.slot-grid { grid-auto-columns: minmax(230px, 1fr); }
.app-inline-actions { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:20px; }
.app-hero { position:relative; overflow:hidden; padding:72px 0 54px; background:radial-gradient(circle at 72% 30%, rgba(0,211,181,.15), transparent 30%), radial-gradient(circle at 8% 18%, rgba(255,43,19,.15), transparent 28%), #080d13; border-bottom:1px solid var(--border-soft); }
.app-hero-grid { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.72fr); align-items:center; gap:44px; }
.app-hero-copy h1 { max-width:760px; margin:18px 0 18px; }
.app-hero-copy > p { max-width:700px; color:var(--muted-2); font-size:18px; }
.app-device-large { width:min(100%, 440px); margin:0 auto; filter:drop-shadow(0 30px 45px rgba(0,0,0,.45)); }
.app-device-large img { width:100%; }
.download-details { display:flex; flex-wrap:wrap; gap:9px; margin-top:22px; }
.download-details span { padding:8px 11px; border:1px solid var(--border); border-radius:999px; background:rgba(255,255,255,.035); color:var(--muted-2); font-size:12px; font-weight:800; }
.install-graphic { border:1px solid var(--border); border-radius:24px; overflow:hidden; background:#0b1118; box-shadow:var(--shadow); }
.install-graphic img { width:100%; }
.guide-steps { list-style:none; padding:0; margin:30px 0 0; display:grid; gap:14px; }
.guide-steps li { display:grid; grid-template-columns:54px minmax(0,1fr); gap:17px; padding:22px; border:1px solid var(--border); border-radius:18px; background:var(--surface); }
.guide-steps > li > span { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:linear-gradient(145deg,var(--red),#a9160a); font-weight:950; font-size:20px; }
.guide-steps h3 { margin:1px 0 7px; font-size:21px; }
.guide-steps p { margin:0; color:var(--muted-2); }
.settings-path { margin-top:13px; padding:12px 14px; border-radius:10px; background:#0d141d; border:1px solid rgba(0,211,181,.25); color:var(--teal); font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:13px; line-height:1.55; }
.security-grid, .troubleshooting-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.security-grid article, .troubleshooting-grid article { border:1px solid var(--border); border-radius:18px; background:var(--surface); padding:22px; }
.security-grid article > span { display:grid; place-items:center; width:46px; height:46px; margin-bottom:16px; border-radius:13px; background:rgba(0,211,181,.1); font-size:22px; }
.security-grid h3, .troubleshooting-grid h3 { margin:0 0 9px; font-size:19px; }
.security-grid p, .troubleshooting-grid p { margin:0; color:var(--muted-2); }

@media (max-width: 900px) {
  .app-hero-grid { grid-template-columns:1fr; }
  .app-device-large { max-width:360px; }
  .security-grid, .troubleshooting-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px) {
  .app-hero { padding:42px 0 34px; }
  .app-hero-copy > p { font-size:16px; }
  .app-device-large { max-width:300px; }
  .guide-steps li { grid-template-columns:44px minmax(0,1fr); padding:17px; gap:12px; }
  .guide-steps > li > span { width:40px; height:40px; border-radius:11px; }
  .security-grid, .troubleshooting-grid { grid-template-columns:1fr; }
}
