
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --surface: #16161e;
  --border: #1e1e2a;
  --border-hover: #2a2a3a;
  --text: #a0a0b8;
  --text-bright: #e0e0ec;
  --muted: #555568;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --accent-subtle: rgba(139,92,246,0.1);
  --green: #34d399;
  --green-bg: rgba(52,211,153,0.08);
  --green-border: rgba(52,211,153,0.2);
  --radius: 10px;
  --radius-sm: 6px;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.15s; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }


/* ── Navbar ── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
}
.nav-logo:hover { color: #fff; }

.nav-links { display: flex; gap: 0.15rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text-bright); background: rgba(255,255,255,0.04); }

.nav-discord {
  color: var(--accent) !important;
}
.nav-discord:hover {
  color: var(--accent-hover) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--text-bright);
}

.btn-full { width: 100%; justify-content: center; }


/* ── Hero ── */

.hero {
  padding: 10rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 560px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
  padding: 0.35rem 0.75rem;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}


/* ── Section layout ── */

section {
  padding: 5rem 0;
}

section > .container > h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.section-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}


/* ── Features ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feat-card {
  padding: 1.5rem;
  background: var(--bg);
  transition: background 0.2s;
}
.feat-card:hover {
  background: var(--surface);
}

.feat-icon {
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.feat-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-bright);
}

.feat-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ── Games ── */

.games-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.game-card:hover {
  border-color: var(--border-hover);
}

.game-icon {
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}

.game-info { flex: 1; }

.game-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.game-name-row h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.badge-live {
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid var(--green-border);
}
.badge-soon {
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.game-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.game-soon { opacity: 0.5; }


/* ── Pricing ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}
.price-card:hover {
  border-color: var(--border-hover);
}

.price-hl {
  border-color: var(--accent);
}
.price-hl:hover {
  border-color: var(--accent-hover);
}

.price-card h3 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card .period {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
  margin-bottom: 1.5rem;
}

.price-card ul { list-style: none; margin-bottom: 1.5rem; }

.price-card li {
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.price-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.7rem;
}


/* ── FAQ ── */

.faq-list {
  max-width: 640px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color 0.15s;
}
.faq-q:hover { color: #fff; }

.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-q::after {
  content: '−';
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ── Footer ── */

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.12em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.footer-col a {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-col a:hover { color: var(--text-bright); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
}


/* ── Legal pages ── */

.legal-page {
  padding: 8rem 0 4rem;
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.legal-page p {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
.legal-page ul li {
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
  line-height: 1.6;
}
.legal-page ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}
.legal-page a {
  color: var(--accent);
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.15rem;
  }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .pricing-grid { max-width: 100%; }
}
