:root {
  --bg: #050202;
  --bg-soft: #120406;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #fff5f5;
  --muted: #d6b8b8;
  --red: #ff1b1b;
  --red-dark: #9d0808;
  --pink: #ffb7c8;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 100px rgba(255, 0, 0, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  position: relative;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.25), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(255, 82, 82, 0.12), transparent 28rem),
    linear-gradient(180deg, #030101 0%, #090202 48%, #030101 100%);
  color: var(--text);
  min-height: 100vh;
}

/* Subtle nightclub icon pattern blended into the existing background. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("assets/nightclub-pattern.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: 760px auto;
  opacity: 0.045;
  mix-blend-mode: screen;
  filter: sepia(1) saturate(7) hue-rotate(325deg) brightness(0.85);
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.9) 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.9) 58%, transparent 100%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow-one { background: #ff1515; left: -12rem; top: 10rem; }
.glow-two { background: #ff4f72; right: -10rem; bottom: 0; opacity: 0.22; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  width: calc(100% - 32px);
  margin: 14px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 3, 3, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 981px) {
  .site-header {
    padding: 18px 30px;
    width: calc(100% - 48px);
  }
  .brand img { width: 46px; height: 46px; }
  .brand { font-size: 1.05rem; gap: 14px; }
  .desktop-nav { gap: 34px; font-size: 1rem; }
  .cart-button { padding: 12px 18px; font-size: 0.98rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.5));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  gap: 28px;
}
.desktop-nav a:hover { color: white; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
.lang-switch:hover { background: rgba(255,255,255,0.12); }
.lang-switch.pulse { animation: langSwitchPulse .32s ease; }
@keyframes langSwitchPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  color: white;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(0,0,0,0.24);
}
.cart-button strong {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 0.76rem;
}

.section-pad {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
h3 { font-size: 1.22rem; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.75; }
.lead { font-size: 1.16rem; max-width: 650px; }
.lead strong { color: white; }

.hero-actions, .modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.primary-btn {
  color: white;
  background: linear-gradient(135deg, #ff3131, #a80000);
  box-shadow: 0 20px 60px rgba(255, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.28);
}
.secondary-btn {
  color: white;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
.primary-btn:hover, .secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 70px rgba(255, 0, 0, 0.26);
}
.full { width: 100%; }

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #f7dfdf;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.hero-art img {
  position: relative;
  z-index: 2;
  width: min(480px, 92vw);
  filter: drop-shadow(0 36px 90px rgba(255, 0, 0, 0.28));
  animation: float 5s ease-in-out infinite;
}
.logo-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08), transparent 55%),
    conic-gradient(from 120deg, transparent, rgba(255, 0, 0, 0.52), transparent, rgba(255,255,255,0.18), transparent);
  filter: blur(0.2px);
  animation: spin 12s linear infinite;
}
.logo-orbit::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: var(--bg);
}
.pulse-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(12, 3, 3, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 138px;
  box-shadow: var(--shadow);
}
.pulse-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 4px;
}
.pulse-card strong { font-size: 1.35rem; }
.price-card { left: 18px; top: 120px; }
.file-card { right: 22px; bottom: 110px; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.015); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% -40%, rgba(255,0,0,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  white-space: nowrap;
  padding: 18px 0;
  display: grid;
  gap: 10px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-row { overflow: hidden; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker 45s linear infinite;
}
.ticker-row.reverse .ticker-track {
  animation-name: ticker-reverse;
  animation-duration: 38s;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  padding: 0 26px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.98rem;
}
.ticker-row.reverse .ticker-item { font-size: 0.86rem; }
.ticker-icon {
  color: var(--red);
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.65));
}
.ticker-row:not(.reverse) .ticker-item { color: white; }
.ticker-row.reverse .ticker-item { color: var(--pink); }
.ticker-item::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 26px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255,0,0,0.7);
  flex-shrink: 0;
}
@keyframes ticker { to { transform: translateX(-33.3334%); } }
@keyframes ticker-reverse {
  from { transform: translateX(-33.3334%); }
  to { transform: translateX(0); }
}

.section-title {
  max-width: 780px;
  margin-bottom: 36px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.glass-card, .feature-card, .buy-card, details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.glass-card { padding: 26px; min-height: 210px; }
.large-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 0;
}
.large-card h3 { font-size: 2rem; letter-spacing: -0.04em; margin-bottom: 16px; }
.large-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 800px;
}
.large-card p + p { margin-top: 14px; }
.text-link {
  color: white;
  font-weight: 900;
  display: inline-flex;
  margin-top: 18px;
}
.mini-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.18);
  color: #ffd6d6;
  font-weight: 950;
  margin-bottom: 24px;
}
.mini-card h3 { font-size: 1.1rem; }
.mini-card p { font-size: 0.94rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 26px;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.15);
  filter: blur(48px);
  right: -80px;
  bottom: -70px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.78), rgba(255,255,255,0.08));
  color: white;
  font-size: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.trailer-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.14), rgba(255,255,255,0.04));
  border-radius: var(--radius-lg);
  padding: 18px;
}
.video-embed {
  position: relative;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(0,0,0,0.28));
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,0,0,0.22), rgba(0,0,0,0.55) 75%);
  pointer-events: none;
}
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.play-button {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.55);
  z-index: 1;
  transition: transform .2s ease;
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-button::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  border-left: 24px solid var(--red);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.trailer-copy { padding: 20px; }

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.phone-card {
  position: relative;
  min-height: 440px;
  border-radius: 38px;
  border: 10px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.38);
}
.phone-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.phone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,0,0,0.1), rgba(0,0,0,0.65) 70%),
    radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 50%);
  z-index: 0;
}
.phone-caption { position: relative; z-index: 1; }
.phone-card.highlight {
  transform: translateY(-18px);
  box-shadow: 0 32px 110px rgba(255,0,0,0.24);
}
.phone-card span { color: var(--pink); font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.76rem; }
.phone-card strong { display: block; font-size: 1.7rem; margin-top: 8px; }

.purchase {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 38px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #f4dddd;
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(255,0,0,0.28);
  color: white;
}
.buy-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.buy-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -90px;
  background: rgba(255,0,0,0.25);
  border-radius: 50%;
  filter: blur(50px);
}
.buy-card > * { position: relative; z-index: 1; }
.buy-card img {
  width: 170px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 20px 40px rgba(255,0,0,0.28));
}
.buy-price {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 20px 0;
}
.buy-price span { font-size: 3rem; line-height: 1; font-weight: 950; letter-spacing: -0.07em; }
.buy-card .secondary-btn { margin-top: 12px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
  border-radius: 22px;
  padding: 22px;
}
.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--red-dark);
  font-weight: 950;
  margin-bottom: 20px;
}
.steps p { margin-bottom: 0; color: #f1dede; font-weight: 750; }
.note { text-align: center; margin: 24px auto 0; max-width: 780px; color: #bca1a1; font-size: 0.94rem; }

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details { padding: 20px 22px; }
summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 16px 0 0; }

.site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 50px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.site-footer strong { color: white; font-size: 1.2rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 800; }
.footer-links a:hover { color: white; }
.credit {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 26px;
  text-align: center;
  font-size: 0.74rem;
  color: #7a5c5c;
}
.credit a { color: #a97676; font-weight: 700; }
.credit a:hover { color: var(--pink); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { gap: 10px; }
  .lang-switch { margin-left: auto; padding: 8px 14px; font-size: 0.8rem; }
  .hero, .trailer-shell, .purchase { grid-template-columns: 1fr; }
  .hero { min-height: auto; align-items: start; padding-top: 34px; gap: 20px; }
  h1 { font-size: clamp(2.8rem, 7vw, 4.2rem); }
  .hero-title { font-size: clamp(1.7rem, 4.2vw, 2.5rem); }
  .lead { font-size: 1.28rem; }
  .hero-art { min-height: 400px; margin-top: 12px; }
  .logo-orbit { width: 340px; height: 340px; }
  .price-card { left: 0; top: 70px; }
  .file-card { right: 0; bottom: 70px; }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .phone-row { grid-template-columns: 1fr; max-width: 410px; margin: 0 auto; }
  .phone-card.highlight { transform: none; }
  .large-card { padding: 30px; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 14px; }
  .brand span { display: none; }
  .lang-switch { padding: 7px 12px; font-size: 0.76rem; }
  .section-pad { padding: 64px 16px; }
  h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .hero-title { font-size: clamp(1.55rem, 6.2vw, 2rem); }
  .lead { font-size: 1.12rem; }
  .hero-art { min-height: 340px; margin-top: 6px; }
  .hero-art img { width: min(300px, 78vw); }
  .logo-orbit { width: 250px; height: 250px; }
  .pulse-card { min-width: 112px; padding: 11px 12px; }
  .pulse-card strong { font-size: 1.08rem; }
  .price-card { top: 46px; }
  .file-card { bottom: 40px; }
  .steps { grid-template-columns: 1fr; }
  .video-embed { min-height: 320px; }
  .site-footer { flex-direction: column; }

  .large-card { padding: 22px; }
  .large-card h3 { font-size: 1.55rem; }
  .large-card p { font-size: 0.95rem; line-height: 1.7; }
  .mini-row { grid-template-columns: 1fr; gap: 12px; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-card {
    padding: 16px;
    min-height: 168px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .feature-card p { font-size: 0.84rem; line-height: 1.5; }

  .phone-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 8px;
  }
  .phone-card {
    min-height: 190px;
    border-radius: 16px;
    border-width: 4px;
    padding: 10px;
  }
  .phone-card span { font-size: 0.56rem; letter-spacing: 0.08em; }
  .phone-card strong { font-size: 0.86rem; margin-top: 4px; }
}

/* ---------------------------------------------
   Age verification gate
--------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate[hidden] { display: none; }

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 27, 27, 0.18), transparent 55%),
    rgba(3, 1, 1, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate-card {
  position: relative;
  width: min(440px, 100%);
  text-align: center;
  padding: 44px 34px 32px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: age-gate-in 0.35s ease;
}

@keyframes age-gate-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}

.age-gate-card .eyebrow { justify-content: center; display: flex; }

.age-gate-card h2 {
  margin: 10px 0 12px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.age-gate-card p#ageGateDesc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 26px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate-actions .primary-btn,
.age-gate-actions .secondary-btn {
  width: 100%;
  text-align: center;
}

.age-gate-note {
  margin: 18px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.75;
  line-height: 1.5;
}

body.age-gate-locked {
  overflow: hidden;
}

@media (max-width: 560px) {
  .age-gate-card {
    padding: 34px 22px 26px;
    border-radius: var(--radius-md);
  }
  .age-gate-card h2 { font-size: 1.28rem; }
}
