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

:root {
  --bg: #07070f;
  --bg2: #0d0d1a;
  --bg3: #111122;
  --amber: #e8a060;
  --amber-dim: #a06030;
  --purple: #7c3aed;
  --purple-dim: #4c1d95;
  --white: #f0eeff;
  --gray: #8880aa;
  --border: rgba(124, 58, 237, 0.2);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 70% 70%, rgba(232,160,96,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #07070f 0%, #0a0815 50%, #07070f 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(124,58,237,0.08);
}

.name {
  font-family: var(--font-display);
  font-size: clamp(72px, 15vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--white) 30%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 4vw, 28px);
  color: var(--amber);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: -8px;
}

.tagline {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--gray);
  max-width: 400px;
  font-weight: 300;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  animation: fadeUp 2s ease-in-out infinite;
}

@keyframes fadeUp {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(-4px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #9f50ff);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(124,58,237,0.08);
  color: var(--white);
  text-decoration: none;
}

.btn-large {
  font-size: 18px;
  padding: 16px 40px;
}

/* ── SECTIONS ── */
section { padding: 80px 0; }

section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 40%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT ── */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(232,160,96,0.1);
  border: 1px solid rgba(232,160,96,0.25);
  color: var(--amber);
  letter-spacing: 0.03em;
}

.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.specs h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.specs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specs li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}

.specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber-dim);
}

/* ── REQUIREMENTS ── */
.requirements { background: var(--bg); }

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.req-icon { font-size: 24px; flex-shrink: 0; }

.req-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.req-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.req-text span {
  font-size: 13px;
  color: var(--gray);
}

/* ── RULES ── */
.rules { background: var(--bg2); }

.rules-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.rules-box h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
}

.rule-icon {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.rule-no .rule-icon { color: #f87171; }
.rule-no { color: var(--gray); }
.rule-yes .rule-icon { color: #4ade80; }
.rule-yes { color: var(--gray); }

.rules-note {
  font-size: 12px;
  color: rgba(136,128,170,0.6);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--bg);
  text-align: center;
}

.final-cta h2 { display: inline-block; }

.final-cta > .container > p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 17px;
}

.studio-link {
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray);
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: rgba(136,128,170,0.5);
  line-height: 1.9;
}

footer a { color: rgba(136,128,170,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .req-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cta-group { flex-direction: column; align-items: center; }
}
