:root {
  color-scheme: dark;
  --bg: #0c0a11;
  --bg-deep: #05050a;
  --panel: rgba(16, 15, 24, 0.76);
  --panel-strong: rgba(25, 20, 38, 0.9);
  --text: #f7f1ff;
  --muted: #bfb2d0;
  --neon-pink: #ff4cd8;
  --neon-purple: #a76bff;
  --neon-cyan: #2ef2ff;
  --neon-red: #ff355f;
  --neon-amber: #ffb347;
  --border: rgba(255, 255, 255, 0.14);
  --glow: 0 0 18px rgba(255, 76, 216, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px rgba(5, 3, 12, 0.7);
  --shadow-neon: 0 0 30px rgba(46, 242, 255, 0.25), 0 0 50px rgba(255, 76, 216, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #231130 0%, var(--bg-deep) 50%, #030308 100%);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: contrast(120%) saturate(130%) brightness(0.55);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 76, 216, 0.25), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(46, 242, 255, 0.2), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(255, 53, 95, 0.2), transparent 50%),
    linear-gradient(120deg, rgba(5, 3, 15, 0.82), rgba(10, 6, 20, 0.9));
  z-index: -2;
}

.frame {
  position: relative;
  max-width: 1200px;
  margin: 4vh auto;
  padding: 28px 36px 36px;
  background: linear-gradient(135deg, rgba(15, 12, 24, 0.85), rgba(10, 9, 18, 0.92));
  border-radius: 34px;
  border: 2px solid rgba(167, 107, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 40px 80px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 76, 216, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(255, 76, 216, 0.5);
  color: var(--neon-pink);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.logo-ring svg {
  width: 28px;
  height: 28px;
}

.brand-text {
  font-family: "Bungee Shade", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

.top-links a:hover {
  color: var(--text);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: var(--muted);
}

.social-pill svg {
  width: 16px;
  height: 16px;
  color: var(--neon-purple);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
}

.top-search input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 32px 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.85rem;
  width: 160px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.top-search svg {
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.cta {
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--neon-pink), var(--neon-purple));
  color: #120914;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--glow);
}

.cta.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.hero-stage {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr);
  gap: 28px;
  align-items: center;
}

.age-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 3, 8, 0.78);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.age-gate.active {
  display: flex;
}

.age-card {
  background: rgba(10, 8, 18, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  gap: 12px;
}

.age-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.age-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.age-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.age-check input {
  accent-color: var(--neon-pink);
  width: 18px;
  height: 18px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-legal {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.age-legal a {
  color: var(--text);
  text-decoration: none;
}

.age-gate.shake .age-card {
  animation: shake 0.35s ease;
}

.stage-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #05050b;
  height: min(60vh, 520px);
  box-shadow: 0 32px 70px rgba(3, 2, 10, 0.8), 0 0 50px rgba(46, 242, 255, 0.2);
}

.stage-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 76, 216, 0.12), rgba(46, 242, 255, 0.08), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  display: none;
}

.stage-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 7px
  );
  opacity: 0.18;
  pointer-events: none;
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(120%) contrast(108%);
}

.stage-content {
  display: grid;
  gap: 16px;
}

.hero-kicker {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.headline {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 76, 216, 0.6);
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-right: 8px;
}

.product-section {
  margin-top: 30px;
}

.boutique-section {
  margin-top: 36px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-copy {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.card-media {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 8, 16, 0.7);
}

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

.product-card {
  background: var(--panel-strong);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  display: grid;
  gap: 12px;
  position: relative;
  min-height: 180px;
  box-shadow: var(--shadow-neon);
}

.product-card p {
  margin: 0;
  font-weight: 500;
}

.product-img {
  height: 90px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  opacity: 0.9;
}

.glow-1 {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.18), 0 0 30px rgba(46, 242, 255, 0.25);
}

.glow-2 {
  box-shadow: 0 0 18px rgba(255, 76, 216, 0.35);
}

.glow-3 {
  box-shadow: 0 0 20px rgba(255, 179, 71, 0.3);
}

.tag {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-info {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.store-card {
  background: rgba(18, 14, 30, 0.8);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.store-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.store-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  margin-top: 36px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(11, 10, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
}

.legal-block h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.legal-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-12px) translateX(8px);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    order: 3;
    width: 100%;
  }

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

  .stage-content {
    order: -1;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .stage-video {
    height: min(50vh, 420px);
  }
}

@media (max-width: 640px) {
  .frame {
    margin: 16px;
    padding: 20px;
  }

  .top-links {
    gap: 10px;
    font-size: 0.8rem;
  }

  .top-actions {
    gap: 8px;
  }

  .top-search input {
    width: 120px;
  }

  .social-pill {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
