@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

/* LuckySocialPlay.com — Neon Social Lounge archetype */
:root {
  --bg-deep: #0a0612;
  --bg-card: rgba(22, 16, 38, 0.85);
  --accent: #ff2d6a;
  --accent-2: #7c3aed;
  --accent-glow: #00f5d4;
  --text: #f4f0ff;
  --text-muted: #a89bc4;
  --border: rgba(255, 45, 106, 0.35);
  --radius: 16px;
  --font-display: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.45), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 45, 106, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(0, 245, 212, 0.12), transparent);
  background-attachment: fixed;
}

/* Subtle grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* Layer content above animated background */
body > .site-header {
  position: relative;
  z-index: 100;
}

body > main,
body > .site-footer {
  position: relative;
  z-index: 2;
}

/* SVG icon pack */
.icon {
  display: block;
  flex-shrink: 0;
}

.icon--logo {
  width: 22px;
  height: 22px;
  color: #fff;
}

.logo-mark {
  color: #fff;
}

.logo-mark .icon use {
  stroke: currentColor;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-chips .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-glow);
  opacity: 0.95;
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  color: var(--accent-glow);
}

.feature-icon .icon {
  width: 100%;
  height: 100%;
}

/* Animated casino-themed background */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg__mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 55% 45% at 25% 15%, rgba(255, 45, 106, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 75% 85%, rgba(124, 58, 237, 0.28), transparent 50%),
    radial-gradient(ellipse 40% 35% at 90% 25%, rgba(0, 245, 212, 0.1), transparent 45%),
    radial-gradient(ellipse 35% 30% at 10% 70%, rgba(255, 45, 106, 0.12), transparent 50%);
  animation: ambient-mesh 22s ease-in-out infinite alternate;
}

@keyframes ambient-mesh {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.85;
  }
  100% {
    transform: translate(-4%, 3%) scale(1.06) rotate(2deg);
    opacity: 1;
  }
}

.ambient-bg__beams {
  position: absolute;
  inset: -1px;
  background: repeating-linear-gradient(
    108deg,
    transparent 0 72px,
    rgba(255, 45, 106, 0.035) 72px 73px,
    transparent 73px 160px,
    rgba(124, 58, 237, 0.04) 160px 161px,
    transparent 161px 280px
  );
  animation: ambient-beams 50s linear infinite;
  opacity: 0.9;
}

@keyframes ambient-beams {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-280px);
  }
}

.ambient-bg__orbs {
  position: absolute;
  inset: 0;
}

.ambient-bg__orbs::before,
.ambient-bg__orbs::after {
  content: "";
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: ambient-orb 16s ease-in-out infinite alternate;
}

.ambient-bg__orbs::before {
  background: var(--accent);
  left: -10%;
  top: 20%;
}

.ambient-bg__orbs::after {
  background: var(--accent-2);
  right: -15%;
  bottom: 10%;
  animation-delay: -6s;
}

@keyframes ambient-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(8%, -6%) scale(1.15);
  }
}

.ambient-bg__float {
  position: absolute;
  inset: 0;
}

.ambient-bg__chip {
  position: absolute;
  left: var(--x, 10%);
  top: var(--y, 15%);
  width: clamp(52px, 11vw, 100px);
  height: clamp(52px, 11vw, 100px);
  animation: ambient-drift 28s ease-in-out infinite;
  animation-delay: var(--t, 0s);
}

.ambient-bg__chip svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.ambient-bg__chip:nth-child(5n + 1) {
  color: rgba(255, 45, 106, 0.14);
}

.ambient-bg__chip:nth-child(5n + 2) {
  color: rgba(124, 58, 237, 0.16);
}

.ambient-bg__chip:nth-child(5n + 3) {
  color: rgba(0, 245, 212, 0.11);
}

.ambient-bg__chip:nth-child(5n + 4) {
  color: rgba(255, 255, 255, 0.08);
}

.ambient-bg__chip:nth-child(5n) {
  color: rgba(255, 45, 106, 0.1);
}

@keyframes ambient-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(12px, -20px) rotate(6deg);
  }
  50% {
    transform: translate(-8px, 12px) rotate(-4deg);
  }
  75% {
    transform: translate(6px, 8px) rotate(3deg);
  }
}

a {
  color: var(--accent-glow);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: #7dfff0;
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.5);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 6, 18, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 0 24px rgba(255, 45, 106, 0.45);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 45, 106, 0.4);
  }
  50% {
    box-shadow: 0 0 32px rgba(0, 245, 212, 0.35);
  }
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-main a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
}

.badge-18 {
  background: linear-gradient(135deg, #c41e3a, #8b0000);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  border: 2px solid #fff3;
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, #fff, var(--accent-glow), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hue-shift 8s ease infinite;
  background-size: 200% auto;
}

@keyframes hue-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 45, 106, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.45);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
}

/* RG strip */
.rg-banner {
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.35), rgba(124, 58, 237, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.rg-banner strong {
  display: block;
  font-size: 1rem;
}

.rg-banner p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rg-age {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  background: #1a1025;
  border: 2px solid var(--accent);
}

/* Cards grid */
.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 42rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, var(--accent-2), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
}

.game-card:hover::before {
  opacity: 0.08;
}

.game-card-inner {
  position: relative;
  z-index: 1;
}

.game-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-glow);
  margin-bottom: 0.5rem;
}

.game-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.game-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Content pages */
main.content-page {
  padding: 2.5rem 0 4rem;
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1rem;
}

.content-page h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-page ul {
  padding-left: 1.25rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

/* Regulators */
.regulators {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.regulators h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
}

.reg-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 72px;
  transition: background 0.2s, border-color 0.2s;
}

.reg-grid a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-glow);
}

.reg-grid img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.reg-grid img.wide {
  max-height: 40px;
  max-width: 160px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Trust chips (hero strip) */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats strip (BrightGameZone-style) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.stat-card {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--accent-glow), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Feature / “Why us” cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.feature-card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(0, 245, 212, 0.35);
}

.feature-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Two-column story */
.split-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
  margin: 2rem 0 2.5rem;
}

.split-panel .prose h2 {
  margin-top: 0;
}

.prose p {
  color: var(--text-muted);
}

/* Spotlight / “Did you know” */
.spotlight {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 245, 212, 0.25);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 245, 212, 0.08));
}

.spotlight h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--accent-glow);
}

.spotlight p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}

/* FAQ accordion */
.faq-block {
  margin: 2.5rem 0;
}

.faq-block h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent-glow);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
  padding-top: 0.85rem;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table th {
  background: rgba(124, 58, 237, 0.25);
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td {
  color: var(--text-muted);
}

.compare-table td strong {
  color: var(--text);
}

/* Trust grid (About) */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.trust-pillar {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.trust-pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Game detail list inside cards */
.game-details {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.game-details li {
  margin-bottom: 0.35rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-hint {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Nav auth */
.nav-auth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.nav-auth__join.btn--nav {
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  box-shadow: 0 4px 16px rgba(255, 45, 106, 0.35);
}

.nav-auth__account {
  font-weight: 600;
  color: var(--text);
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-link,
.nav-auth__logout {
  background: none;
  border: none;
  color: var(--accent-glow);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-dot {
  color: var(--text-muted);
  user-select: none;
}

/* Auth pages */
.auth-layout {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 4rem;
}

.auth-card {
  width: min(420px, 92vw);
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.auth-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
}

.auth-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
}

.auth-form .checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.auth-form .checkbox-row input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-error {
  color: #ff6b8a;
  font-size: 0.9rem;
  margin: -0.5rem 0 1rem;
  font-weight: 600;
}

.form-success {
  color: var(--accent-glow);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.auth-alt {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Lounge pulse + ticker */
.lounge-pulse {
  margin: 0 0 2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 245, 212, 0.2);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.15), rgba(255, 45, 106, 0.1));
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.lounge-pulse::before {
  content: "●";
  color: var(--accent-glow);
  margin-right: 0.65rem;
  font-size: 0.65rem;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.ticker {
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  gap: 3rem;
  padding: 0.75rem 0;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker__item {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.testimonial-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 45, 106, 0.25);
  font-family: Georgia, serif;
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-glow);
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.week-strip article {
  padding: 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.week-strip h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.week-strip p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.stat-value--num {
  font-variant-numeric: tabular-nums;
}

.account-panel {
  display: grid;
  gap: 1.25rem;
  max-width: 36rem;
}

.account-panel .info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-panel .info-row span:first-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.account-panel .info-row strong {
  color: var(--text);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-danger {
  background: transparent;
  border: 1px solid #c41e3a;
  color: #ff8a9e;
}

.btn-danger:hover {
  background: rgba(196, 30, 58, 0.2);
  color: #fff;
}

/* Age gate + cookie bar */
html.site-consent--scroll-lock,
html.site-consent--scroll-lock body {
  overflow: hidden;
}

.site-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 4, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: site-age-in 0.35s ease-out;
}

.site-age-gate--hide {
  animation: site-age-out 0.28s ease-in forwards;
}

@keyframes site-age-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes site-age-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.site-age-gate__panel {
  width: min(440px, 100%);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(0, 245, 212, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  position: relative;
}

.site-age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent-glow), var(--accent-2));
}

.site-age-gate__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.site-age-gate__lead {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  text-align: left;
}

.site-age-gate__fine {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
  opacity: 0.9;
}

.site-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-age-gate__actions .btn {
  width: 100%;
  justify-content: center;
}

.site-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  padding: 1rem 0 max(1rem, env(safe-area-inset-bottom));
  background: rgba(14, 10, 24, 0.97);
  border-top: 1px solid rgba(0, 245, 212, 0.2);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  animation: site-cookie-in 0.4s ease-out;
}

.site-cookie-bar--hide {
  animation: site-cookie-out 0.3s ease-in forwards;
}

@keyframes site-cookie-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes site-cookie-out {
  to {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
  }
}

.site-cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-cookie-bar__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.site-cookie-bar__text a {
  color: var(--accent-glow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-cookie-bar__actions {
  flex-shrink: 0;
}

.site-cookie-bar__accept {
  min-width: 7.5rem;
}

@media (min-width: 768px) {
  .site-age-gate__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-age-gate__actions .btn {
    flex: 1;
    min-width: 0;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ambient-bg__mesh,
  .ambient-bg__beams,
  .ambient-bg__orbs::before,
  .ambient-bg__orbs::after,
  .ambient-bg__chip {
    animation: none !important;
  }

  .ticker__track {
    animation: none !important;
  }

  .lounge-pulse::before {
    animation: none !important;
  }

  .site-age-gate,
  .site-age-gate--hide,
  .site-cookie-bar,
  .site-cookie-bar--hide {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
