:root {
  --bg: #07080c;
  --panel: #12151c;
  --border: #2a3140;
  --text: #eef2f8;
  --muted: #93a0b4;
  --accent: #8b5cf6;
  --accent2: #ec4899;
  --ok: #34d399;
  --radius: 14px;
  --font: "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 10% -10%, #1a1030 0%, var(--bg) 50%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}
a { color: #c4b5fd; text-decoration: none; }
a:hover { color: #fff; }
.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Age gate */
#ageGate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
#ageGate.hidden { display: none; }
.gate-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  max-width: 420px;
  text-align: center;
}
.gate-card h1 { margin: 0 0 8px; font-size: 1.4rem; }
.gate-card p { color: var(--muted); font-size: 0.95rem; }
.gate-actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

/* Nav */
.nav {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: rgba(7,8,12,0.9); backdrop-filter: blur(10px); z-index: 50;
}
.logo { font-weight: 800; letter-spacing: 0.02em; font-size: 1.15rem;
  background: linear-gradient(90deg, #c4b5fd, #f9a8d4); -webkit-background-clip: text; color: transparent; }
.nav a { color: var(--muted); font-size: 0.92rem; }
.nav a:hover, .nav a.active { color: #fff; }
.nav .spacer { flex: 1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--border);
  padding: 10px 16px; font-weight: 600; font-size: 0.92rem; cursor: pointer;
  background: var(--panel); color: var(--text);
}
.btn:hover { border-color: var(--accent); }
.btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; box-shadow: 0 8px 24px rgba(139,92,246,0.25);
}
.btn-ghost { background: transparent; }

/* Hero */
.hero { padding: 56px 0 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 800px) { .hero { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; margin: 0 0 12px; }
.hero p.lead { color: var(--muted); font-size: 1.05rem; margin: 0 0 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; min-height: 220px;
}
.hero-card img { width: 100%; border-radius: 10px; display: block; aspect-ratio: 3/4; object-fit: cover; background: #000; }

/* Sections */
section { padding: 36px 0; }
section h2 { margin: 0 0 8px; font-size: 1.5rem; }
section .sub { color: var(--muted); margin: 0 0 20px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }
.feature {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px;
}
.feature h3 { margin: 0 0 6px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.g-item {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: #0b0d12; aspect-ratio: 3/4; cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px; font-size: 11px; color: #ddd;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

/* Ad slots */
.ad-slot {
  border: 1px dashed #3b4458; border-radius: 12px;
  background: #0d1016; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; text-align: center; padding: 12px;
  min-height: 90px; margin: 16px 0;
}
.ad-slot.leader { min-height: 100px; }
.ad-slot.side { min-height: 250px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.price.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(139,92,246,0.3); }
.price h3 { margin: 0; }
.price .amt { font-size: 1.8rem; font-weight: 800; }
.price ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 0.9rem; flex: 1; }
.price .btn { width: 100%; }

/* Forms */
input, textarea, select {
  width: 100%; background: #0b0e14; border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 10px 12px; font: inherit;
}
label { display: block; font-size: 0.85rem; color: var(--muted); margin: 10px 0 4px; }
.form-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  max-width: 560px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border); padding: 28px 0 40px; margin-top: 20px;
  color: var(--muted); font-size: 0.85rem;
}
footer .row { display: flex; flex-wrap: wrap; gap: 12px 20px; }

.badge {
  display: inline-block; font-size: 11px; padding: 3px 8px; border-radius: 999px;
  background: #1f1630; color: #d8b4fe; border: 1px solid #3b2a5c;
}
.hidden { display: none !important; }
.notice {
  background: #14201a; border: 1px solid #245c42; color: #a7f3d0;
  padding: 10px 12px; border-radius: 10px; font-size: 0.9rem; margin: 12px 0;
}
