:root {
  --p: #6c5ce7;
  --c: #00f5d4;
  --bg: #0f1117;
  --s: #1a1d25;
  --b: #2e3340;
  --t: #fff;
  --t2: #b0b3c6;
  --t3: #6b7280;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--t);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--b);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--t);
}
.logo span {
  color: var(--c);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--t);
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--s);
  border: 1px solid var(--b);
  border-radius: 8px;
  padding: 3px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.lang-switch a:hover {
  color: var(--t);
}
.lang-switch a.active {
  background: var(--p);
  color: #fff;
}
.nav-cta {
  background: var(--p);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.nav-cta-secondary {
  background: transparent;
  border: 1px solid rgba(108, 92, 231, 0.4);
  color: var(--p);
}
.nav-cta-secondary:hover {
  background: rgba(108, 92, 231, 0.12);
}
.nav-link-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  padding: 8px 4px;
  transition: color 0.15s;
}
.nav-link-cta:hover {
  color: var(--t);
}

/* Live clubs section — populated by inline JS that hits /v1/clubs */
.clubs {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.clubs h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 12px;
}
.clubs-sub {
  text-align: center;
  color: var(--t2);
  margin: 0 0 32px;
  font-size: 15px;
}
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.club-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.15s,
    transform 0.15s;
}
.club-card:hover {
  border-color: rgba(108, 92, 231, 0.5);
  transform: translateY(-2px);
}
.club-card-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--t);
  margin: 0 0 6px;
}
.club-card-addr {
  font-size: 13px;
  color: var(--t2);
  margin: 0 0 12px;
}
.club-card-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.clubs-empty,
.clubs-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  color: var(--t2);
  font-size: 14px;
}
.clubs-error {
  color: #ef4444;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.1) 0%, transparent 70%);
  top: 30%;
  right: 10%;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--p);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--c);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--t2);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-primary {
  background: var(--p);
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
}
.btn-primary:hover {
  background: #7c6bff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--b);
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--t);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--p);
  color: var(--p);
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--c);
  letter-spacing: 2px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--t3);
  font-weight: 600;
  margin-top: 4px;
}

section {
  padding: 100px 40px;
}
.section-tag {
  display: inline-block;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--p);
  margin-bottom: 16px;
  letter-spacing: 0.6px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--c);
}
.section-sub {
  font-size: 16px;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.7;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.problem-card {
  background: var(--s);
  border: 1px solid var(--b);
  border-radius: 20px;
  padding: 28px;
}
.problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.problem-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--t);
}
.problem-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

.how-bg {
  background: var(--s);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step {
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--p);
  margin: 0 auto 16px;
}
.step-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-text {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
}

.sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.side-card {
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--b);
}
.side-card.gamer {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0.05) 100%);
}
.side-card.owner {
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(0, 245, 212, 0.03) 100%);
}
.side-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.side-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}
.side-sub {
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 24px;
  line-height: 1.6;
}
.side-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.side-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--t2);
}
.side-features li::before {
  content: '✓';
  color: var(--c);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.side-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.side-btn:hover {
  opacity: 0.9;
}
.side-btn.owner-btn {
  background: rgba(0, 245, 212, 0.15);
  border: 1px solid rgba(0, 245, 212, 0.3);
  color: var(--c);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.model-card {
  background: var(--s);
  border: 1px solid var(--b);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.model-card.highlight {
  border-color: var(--p);
  background: rgba(108, 92, 231, 0.08);
}
.model-phase {
  font-size: 11px;
  font-weight: 700;
  color: var(--p);
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.model-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.model-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.model-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--c);
  letter-spacing: 2px;
}

.traction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.traction-card {
  background: var(--s);
  border: 1px solid var(--b);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.traction-icon {
  font-size: 40px;
  flex-shrink: 0;
}
.traction-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--c);
  letter-spacing: 2px;
  line-height: 1;
}
.traction-lbl {
  font-size: 14px;
  color: var(--t2);
  margin-top: 4px;
}

.cta-section {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.15) 0%,
    transparent 50%,
    rgba(0, 245, 212, 0.08) 100%
  );
  border-top: 1px solid var(--b);
}

footer {
  background: var(--s);
  border-top: 1px solid var(--b);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
}
.footer-logo span {
  color: var(--c);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--t3);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--p);
}
.footer-copy {
  font-size: 12px;
  color: var(--t3);
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-val {
    font-size: 36px;
  }
  section {
    padding: 60px 24px;
  }
  .problem-grid,
  .steps-grid,
  .model-grid,
  .traction-grid,
  .sides-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
}
