:root {
  --bg: #07010a;
  --bg-soft: #130214;
  --surface: rgba(22, 8, 24, 0.82);
  --surface-strong: rgba(18, 7, 21, 0.94);
  --border: rgba(255, 74, 165, 0.16);
  --border-strong: rgba(255, 91, 183, 0.34);
  --text: #fff5fb;
  --muted: #cfb7c8;
  --gold: #ff4fb6;
  --gold-soft: #ff2f73;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --max-width: 1180px;
  --nav-height: 84px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 76, 170, 0.18), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(255, 42, 95, 0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(170, 21, 86, 0.16), transparent 30%),
    linear-gradient(180deg, #060107 0%, #0c0310 42%, #070109 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body.gate-locked {
  overflow: hidden;
}

body.gate-locked main,
body.gate-locked .site-header,
body.gate-locked .site-footer {
  pointer-events: none;
  user-select: none;
  filter: blur(8px);
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.hero__headline,
.cta-panel h2,
.age-gate h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
}

.section-heading p:last-child,
.hero__subheadline,
.cta-panel p,
.legal-card p,
.faq-list p,
.card p,
.step p,
.preview-points span,
.value-strip span,
.safety-panel p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(9, 1, 10, 0.92), rgba(9, 1, 10, 0.68));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 87, 177, 0.12);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 74, 165, 0.18), rgba(255, 74, 165, 0.04));
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 24px rgba(255, 66, 173, 0.2);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 67, 177, 0.35));
}

.brand__text {
  display: grid;
  gap: 0.05rem;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.language-control {
  display: grid;
  gap: 0.35rem;
  position: relative;
}

.language-control--gate {
  margin-top: 1.15rem;
  margin-bottom: 0.25rem;
}

.language-control__label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.language-picker__trigger {
  width: 100%;
  min-width: 12rem;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 87, 177, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.language-picker__trigger:focus-visible,
.language-picker__option:focus-visible {
  outline: 2px solid rgba(255, 117, 193, 0.45);
  outline-offset: 3px;
}

.language-picker__trigger-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.language-picker__value {
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.language-picker__flag {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.language-picker__chevron {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid rgba(255, 245, 251, 0.8);
  border-bottom: 2px solid rgba(255, 245, 251, 0.8);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  margin-right: 0.2rem;
}

.language-control.is-open .language-picker__chevron {
  transform: rotate(225deg);
  margin-top: 0.35rem;
}

.language-picker__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 87, 177, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 7, 22, 0.98), rgba(12, 4, 13, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 62, 156, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.language-control.is-open .language-picker__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-picker__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.language-picker__option:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 87, 177, 0.14);
}

.language-picker__option.is-selected {
  background: linear-gradient(135deg, rgba(255, 85, 173, 0.18), rgba(255, 57, 122, 0.08));
  border-color: rgba(255, 87, 177, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.language-picker__option span {
  font-size: 0.95rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  min-height: 3.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

.btn:hover,
.btn:focus-visible,
summary:hover,
summary:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(228, 194, 124, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6fcb, #ff397a);
  color: #fff7fb;
  box-shadow: 0 18px 36px rgba(255, 57, 122, 0.28);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 87, 177, 0.16);
  color: var(--text);
}

.btn-small {
  min-height: auto;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.hero {
  padding-top: 4rem;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero__grid,
.preview-grid,
.safety-grid {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  align-items: center;
}

.hero__badges,
.gate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.gate-tags span,
.preview-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  color: var(--muted);
}

.pill-gold,
.preview-chip {
  color: #fff8fc;
  background: linear-gradient(135deg, #ff6dcc, #ff397a);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(255, 72, 153, 0.28);
}

.hero__content h2 {
  margin: 1rem 0 0.7rem;
  color: #ff81d1;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__content {
  animation: fade-up 700ms ease both;
}

.hero__headline {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 12ch;
}

.hero__subheadline {
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 1.25rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero__meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero__meta-item,
.link-placeholder-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 87, 177, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__meta-item strong,
.link-placeholder-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero__meta-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__note,
.cta-note,
.age-gate__footnote {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  animation: fade-up 900ms ease both;
  isolation: isolate;
}

.hero__brand-art {
  position: absolute;
  top: 0;
  right: 8%;
  width: min(52vw, 14rem);
  z-index: 0;
}

.hero__brand-halo {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  background: radial-gradient(circle, rgba(255, 70, 174, 0.3), transparent 65%);
  filter: blur(24px);
}

.hero__logo-image {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 1.8rem;
  box-shadow: 0 0 42px rgba(255, 56, 140, 0.22);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  animation: drift 10s ease-in-out infinite;
}

.orb-one {
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 72, 180, 0.32), transparent 70%);
  top: 8%;
  right: 12%;
}

.orb-two {
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 38, 88, 0.32), transparent 70%);
  bottom: 8%;
  left: 10%;
}

.phone,
.preview-device {
  position: relative;
  width: min(100%, 22rem);
  border-radius: 2.5rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 109, 194, 0.04));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 85, 173, 0.16);
  animation: float-card 8s ease-in-out infinite;
  z-index: 1;
}

.phone__frame,
.preview-device__screen {
  min-height: 39rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top, rgba(255, 83, 186, 0.12), transparent 24%),
    linear-gradient(180deg, #170616 0%, #100311 100%);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.phone__hero {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 72, 167, 0.18), rgba(255, 56, 113, 0.08));
  border: 1px solid rgba(255, 87, 177, 0.18);
}

.phone__hero img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 67, 177, 0.4));
}

.phone__header,
.preview-device__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.phone__card,
.step,
.card,
.legal-card,
.safety-panel,
.cta-panel,
.value-strip__grid > div,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.phone__card {
  padding: 1rem;
}

.phone__card strong,
.preview-copy strong {
  display: block;
  margin-bottom: 0.2rem;
}

.phone__label {
  margin: 0 0 0.4rem;
  color: #ff8bda;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.phone__card span,
.bubble {
  color: var(--muted);
  font-size: 0.95rem;
}

.phone__chat {
  margin-top: auto;
  display: grid;
  gap: 0.8rem;
}

.bubble {
  max-width: 90%;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
}

.bubble-dark {
  background: rgba(255, 255, 255, 0.05);
}

.bubble-gold {
  background: linear-gradient(135deg, rgba(255, 92, 189, 0.22), rgba(255, 49, 100, 0.12));
  margin-left: auto;
  color: var(--text);
}

.value-strip {
  padding-bottom: 1rem;
}

.value-strip__grid,
.features-grid,
.steps-grid,
.preview-points,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.value-strip__grid > div,
.card,
.step,
.legal-card,
.faq-list details {
  padding: 1.3rem;
}

.value-strip strong,
.card h3,
.step h3,
.faq-list summary {
  font-size: 1.04rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card h3,
.step h3,
.legal-card p,
.footer-copy,
.footer-meta p {
  margin: 0;
}

.card p,
.step p {
  margin-top: 0.75rem;
}

.step {
  padding: 1.45rem;
}

.step__index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.safety-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.safety-list li + li {
  margin-top: 0.75rem;
}

.safety-panel {
  padding: 1.5rem;
}

.safety-note {
  margin-top: 1.4rem;
}

.preview-copy {
  display: grid;
  gap: 1rem;
}

.preview-points {
  margin-top: 0.5rem;
}

.preview-points div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-points div:last-child {
  border-bottom: none;
}

.preview-device__screen {
  min-height: 34rem;
}

.preview-device__status {
  width: 5.5rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 auto;
}

.preview-device__hero {
  display: grid;
  gap: 0.5rem;
  justify-content: start;
}

.preview-device__hero strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.preview-device__logo {
  width: 7.25rem;
  border-radius: 1.35rem;
  box-shadow: 0 0 30px rgba(255, 58, 140, 0.16);
}

.preview-device__hero p {
  margin: 0;
  color: var(--muted);
}

.preview-device__list {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
}

.preview-row {
  height: 5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 73, 165, 0.12));
}

.preview-row.short {
  width: 70%;
}

.preview-row.medium {
  width: 85%;
}

.cta-section {
  padding-top: 1rem;
}

.cta-panel {
  padding: 1.6rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details[open] {
  border-color: var(--border-strong);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}

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

.faq-list p {
  margin: 0.9rem 0 0;
}

.legal {
  display: grid;
  gap: 1.5rem;
}

.legal-card {
  display: grid;
  gap: 1rem;
}

.legal-block {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block:first-child {
  padding-top: 0;
}

.legal-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block h3 {
  margin: 0;
  font-size: 1.02rem;
}

.legal-block--accent {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 73, 165, 0.06);
}

.link-placeholder-card {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.legal-card a,
.footer-links a,
.age-gate__notice a {
  color: var(--gold);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  align-items: start;
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-meta {
  display: grid;
  gap: 0.8rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 66, 173, 0.16), transparent 20%),
    rgba(2, 1, 4, 0.9);
  backdrop-filter: blur(22px);
}

.age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 77, 181, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(19, 5, 20, 0.97), rgba(10, 3, 12, 0.98));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.age-gate__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.age-gate__brand img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 67, 177, 0.35));
}

.age-gate h1 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  margin-top: 0.2rem;
}

.age-gate__lead {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  color: var(--text);
}

.age-gate__notice {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
}

.age-gate__notice p,
.age-gate__footnote {
  margin: 0;
}

.age-gate__actions {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.noscript-banner {
  padding: 1rem;
  background: #190814;
  color: #fff5fb;
  border-bottom: 1px solid rgba(255, 87, 177, 0.22);
  font-size: 0.95rem;
}

html[dir="rtl"] body,
html[dir="rtl"] .language-picker__trigger,
html[dir="rtl"] .language-picker__option {
  font-family: var(--font-body);
}

html[dir="rtl"] .nav,
html[dir="rtl"] .nav__actions,
html[dir="rtl"] .brand,
html[dir="rtl"] .hero__actions,
html[dir="rtl"] .hero__badges,
html[dir="rtl"] .gate-tags,
html[dir="rtl"] .age-gate__brand,
html[dir="rtl"] .phone__hero,
html[dir="rtl"] .language-picker__trigger-inner,
html[dir="rtl"] .language-picker__option {
  direction: rtl;
}

html[dir="rtl"] .section-heading--left,
html[dir="rtl"] .preview-copy,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer-meta,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .language-control,
html[dir="rtl"] .language-picker__option {
  text-align: right;
}

html[dir="rtl"] .language-picker__menu {
  left: auto;
  right: 0;
}

html[dir="rtl"] .section-heading--left {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .safety-list {
  padding-right: 1.2rem;
  padding-left: 0;
}

html[dir="rtl"] .bubble-gold {
  margin-right: auto;
  margin-left: 0;
}

.section-ad {
  padding-top: 0.4rem;
}

.section-ad--mobile {
  display: none;
}

.ad-slot {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 88, 182, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(19, 7, 23, 0.88), rgba(11, 3, 15, 0.9));
  border: 1px dashed rgba(255, 87, 177, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.ad-slot--live {
  border-style: solid;
  border-color: rgba(255, 87, 177, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.ad-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 30%, rgba(255, 255, 255, 0.015) 70%, transparent);
  pointer-events: none;
}

.ad-slot--soft {
  background:
    radial-gradient(circle at bottom left, rgba(255, 62, 118, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 7, 24, 0.96), rgba(13, 4, 19, 0.96));
}

.ad-banner,
.ad-rectangle,
.ad-responsive-block {
  width: 100%;
  margin-inline: auto;
}

.ad-banner {
  max-width: 760px;
  min-height: clamp(7rem, 14vw, 9rem);
  display: grid;
  align-content: center;
}

.ad-rectangle {
  max-width: 336px;
  min-height: clamp(16rem, 46vw, 19rem);
  display: grid;
  align-content: center;
}

.ad-responsive-block {
  max-width: 980px;
  min-height: clamp(9rem, 20vw, 13rem);
  display: grid;
  align-content: center;
}

.ad-slot--compact {
  max-width: 360px;
  min-height: auto;
  padding-block: 1rem;
}

.ad-slot__eyebrow {
  margin: 0 0 0.7rem;
  color: rgba(255, 139, 218, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ad-slot__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.ad-slot__code {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 87, 177, 0.12);
  color: rgba(255, 245, 251, 0.7);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.74rem;
  position: relative;
  z-index: 1;
}

.ad-slot__size {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 233, 246, 0.72);
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  font-family: "JetBrains Mono", "Consolas", monospace;
  position: relative;
  z-index: 1;
}

.ad-slot h2 {
  margin: 0;
  font-size: clamp(1.18rem, 3.2vw, 1.45rem);
  position: relative;
  z-index: 1;
}

.ad-slot p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.ad-slot__hint {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.78rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 87, 177, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.ad-slot__replace-note {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 235, 246, 0.5);
  font-size: 0.78rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.ad-slot__replace-note code {
  color: rgba(255, 202, 232, 0.84);
  font-family: "JetBrains Mono", "Consolas", monospace;
}

.ad-script-frame {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.ad-script-frame--desktop {
  max-width: 728px;
  min-height: 90px;
  margin-inline: auto;
}

.ad-script-frame--mobile {
  max-width: 320px;
  min-height: 50px;
  margin-inline: auto;
}

.ad-script-frame iframe {
  display: block;
  max-width: 100%;
  margin-inline: auto;
  border: 0;
}

.ad-banner .ad-slot__hint,
.ad-banner h2,
.ad-banner p {
  max-width: 48rem;
}

.ad-rectangle .ad-slot__hint,
.ad-rectangle h2,
.ad-rectangle p {
  max-width: 100%;
}

.ad-responsive-block .ad-slot__hint,
.ad-responsive-block h2,
.ad-responsive-block p {
  max-width: 52rem;
}

.video-promo-grid {
  display: grid;
  gap: 1.2rem;
}

.video-promo-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 7, 24, 0.96), rgba(12, 3, 18, 0.96));
  border: 1px solid rgba(255, 87, 177, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.video-promo__embed {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.25rem);
  background:
    radial-gradient(circle at top, rgba(255, 87, 177, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(17, 6, 22, 0.96), rgba(10, 3, 14, 0.98));
  border: 1px solid rgba(255, 87, 177, 0.14);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
}

.video-promo__glow {
  position: absolute;
  inset: auto 12% -24% 12%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 83, 186, 0.22), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.video-promo__placeholder {
  width: min(100%, 28rem);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.video-promo__play {
  width: 4.35rem;
  height: 4.35rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 111, 203, 0.26), rgba(255, 57, 122, 0.2));
  border: 1px solid rgba(255, 87, 177, 0.24);
  box-shadow: 0 0 28px rgba(255, 87, 177, 0.16);
}

.video-promo__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 1rem solid rgba(255, 247, 251, 0.9);
}

.video-promo__placeholder strong {
  display: block;
  font-size: clamp(1.15rem, 3.4vw, 1.45rem);
}

.video-promo__placeholder p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.video-promo__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.video-promo__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.82rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 87, 177, 0.14);
  color: var(--muted);
  font-size: 0.9rem;
}

.link-placeholder-card a[data-apk-link],
.footer-links a[data-apk-link] {
  word-break: break-word;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (min-width: 700px) {
  .hero__grid,
  .preview-grid,
  .safety-grid,
  .video-promo-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .value-strip__grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cta-panel {
    grid-template-columns: 1.2fr auto;
  }

  .age-gate__actions {
    grid-template-columns: 1fr 1fr;
  }

  .ad-banner {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 760px) {
  .section-ad--desktop {
    display: none;
  }

  .section-ad--mobile {
    display: block;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .language-picker__trigger {
    width: 100%;
  }

  .language-picker__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0.45rem;
  }

  .language-control.is-open .language-picker__menu {
    display: grid;
  }

  .ad-slot {
    padding: 1.15rem;
  }

  .ad-slot__meta {
    gap: 0.45rem;
    justify-content: center;
  }

  .ad-banner,
  .ad-rectangle,
  .ad-responsive-block {
    max-width: 100%;
  }

  .ad-banner {
    min-height: 6.25rem;
  }

  .ad-slot--compact {
    min-height: auto;
    padding-inline: 0.85rem;
  }

  .ad-rectangle {
    min-height: 15rem;
  }

  .ad-responsive-block {
    min-height: 8.75rem;
  }
}

@media (min-width: 761px) {
  .section-ad--mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__visual {
    min-height: 38rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
