:root {
  --bg: #07030c;
  --bg-alt: #120a1b;
  --purple: #6c47ff;
  --purple-soft: #b199ff;
  --accent: #ff5f8f;
  --accent-soft: #ffe27b;
  --text: #f8f7ff;
  --muted: #c6c0d9;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Chakra Petch', 'Orbitron', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(108, 71, 255, 0.25), transparent 45%),
              radial-gradient(circle at 20% 20%, rgba(255, 95, 143, 0.18), transparent 40%),
              var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 3, 12, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  box-shadow: 0 0 12px rgba(255, 95, 143, 0.6);
}

nav a {
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

nav a.active,
nav a:hover {
  color: var(--text);
}

main section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  padding-top: 60px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

h1 {
  margin: 12px 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
}

p.lead {
  color: var(--muted);
  max-width: 520px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #06030a;
}

.btn.secondary {
  border-color: var(--border);
  color: var(--text);
}

.image-slot {
  background: var(--bg-alt);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border-radius: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  object-fit: cover;
  display: block;
}

.section-header {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.section-header p {
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature h3 {
  margin: 0;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent);
}

.stat small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  border-left: 2px solid var(--purple);
  padding-left: 16px;
}

.timeline-item strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.timeline-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cta-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.contact-item h3 {
  margin: 0 0 6px;
}

.contact-item p {
  margin: 0 0 8px;
  color: var(--muted);
}

.contact-item a {
  text-decoration: none;
  color: var(--accent-soft);
}

.playfab-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.form,
.player-card {
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  margin: 6px 0 16px;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.player-grid .metric {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.status {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.legal-text {
  color: var(--muted);
  display: grid;
  gap: 16px;
}

.legal-list {
  padding-left: 20px;
  color: var(--muted);
}

footer {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .page {
    padding: 0 20px 60px;
  }

  nav a {
    margin-left: 12px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
