:root {
  --bg: #1A0B10;
  --surface: #2A1118;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #FB7185;
  --secondary: #F97316;
  --accent: #FACC15;
  --border: rgba(255, 241, 242, 0.12);
  --pastel-blend: rgba(251, 113, 133, 0.15);
  --soft-radius: 24px;
  --blur-strength: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 300;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(251, 113, 133, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 90% 100%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #120810 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--pastel-blend) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(250, 204, 21, 0.08) 0%, transparent 35%);
  filter: blur(var(--blur-strength));
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(253, 164, 175, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  animation: meditative-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes meditative-drift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-30px, 40px) scale(1.08); opacity: 0.85; }
}

@keyframes soft-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.03); }
}

@keyframes underline-slide {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.disclosure-banner {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(255, 241, 242, 0.92);
  color: #4a1520;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.5;
}

.page-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrap > main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(26, 11, 16, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 58px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 8px 10px;
  position: relative;
  font-style: normal;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  width: 280px;
  height: calc(100vh - 58px);
  background: var(--surface);
  z-index: 85;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  padding: 16px 0;
}

.nav-drawer a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 14px 24px;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-drawer a:hover {
  border-left-color: var(--accent);
  background: rgba(251, 113, 133, 0.08);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 58px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: auto;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: italic;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-badges a {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-badges a:hover {
  opacity: 1;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 16px;
}

.age-gate-overlay,
.cookie-banner {
  position: fixed;
  z-index: 1000;
}

.age-gate-overlay {
  inset: 0;
  background: rgba(10, 5, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.age-gate-box h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--accent);
}

.age-gate-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-content {
  padding: 48px 0 64px;
}

.legal-content h1 {
  font-size: 2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--muted);
}

.legal-content p,
.legal-content li {
  margin-bottom: 12px;
  color: rgba(255, 241, 242, 0.88);
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--accent);
}

.pastel-clouds-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(253, 164, 175, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.soft-mist-card {
  background: rgba(42, 17, 24, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
}

.meditative-pulse {
  animation: soft-breathe 6s ease-in-out infinite;
}

.blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }

  .nav-overlay {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  .decor-img-wrap,
  .decor-bg-band,
  .guide-images,
  .payment-visual,
  .apps-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img-wrap img,
  .guide-images img,
  .payment-visual img,
  .cashout-rail img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .decor-bg-band {
    min-height: 140px;
    background-size: cover;
    background-position: center;
  }
}
