:root {
  --black: #080808;
  --white: #f5f0e8;
  --accent: #ff3c00;
  --accent2: #ffde00;
  --mid: #1a1a1a;
  --muted: #555;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.25s ease;
  mix-blend-mode: difference;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid #1f1f1f;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  cursor: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #e03300; transform: translateY(-1px); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 140px 48px 80px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  bottom: -60px;
  left: -20px;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
}

.hero-left { position: relative; z-index: 2; }

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
h1 .highlight { color: var(--accent); display: block; }
h1 .sub { color: var(--accent2); display: block; }

.hero-desc {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  cursor: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-primary:hover { color: var(--black); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid #2a2a2a;
  padding: 16px 32px;
  cursor: none;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: #555; }

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pool-card {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 28px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease both;
}
.pool-card:nth-child(2) { animation-delay: 0.15s; }
.pool-card:nth-child(3) { animation-delay: 0.3s; margin-left: 40px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.pool-card:nth-child(2)::before { background: var(--accent2); }
.pool-card:nth-child(3)::before { background: #00d4aa; }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-creator {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-dot {
  width: 5px; height: 5px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.card-mission {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-pool {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}
.pool-card:nth-child(2) .card-pool { color: var(--accent2); }
.pool-card:nth-child(3) .card-pool { color: #00d4aa; }

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.card-stat {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.progress-bar {
  height: 2px;
  background: #2a2a2a;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  animation: progress 3s ease-in-out infinite alternate;
}
.pool-card:nth-child(2) .progress-fill { background: var(--accent2); animation-delay: 0.5s; }
.pool-card:nth-child(3) .progress-fill { background: #00d4aa; animation-delay: 1s; }

@keyframes progress {
  from { width: 30%; }
  to { width: 85%; }
}

.section {
  padding: 120px 48px;
  position: relative;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 80px;
  letter-spacing: 0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  background: var(--mid);
  padding: 48px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}
.step:hover { border-top-color: var(--accent); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #1f1f1f;
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.step:hover .step-num { color: #2a2a2a; }

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.role-card {
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.role-card.creator { background: var(--accent); }
.role-card.player { background: var(--mid); border: 1px solid #2a2a2a; }

.role-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}

.role-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  margin-bottom: 24px;
}

.role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.role-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0.85;
}
.role-list li::before {
  content: '→';
  font-family: 'Space Mono', monospace;
  flex-shrink: 0;
  margin-top: 1px;
}

.role-card.creator .role-list li { color: rgba(245,240,232,0.9); }

.role-bg-num {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.stats-section {
  padding: 80px 48px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  padding: 40px 32px;
  background: var(--mid);
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-item:nth-child(2) .stat-num { color: var(--accent2); }
.stat-item:nth-child(3) .stat-num { color: #00d4aa; }
.stat-item:nth-child(4) .stat-num { color: #a78bfa; }

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

.cta-section {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,60,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta-title span { color: var(--accent); display: block; }

.cta-sub {
  font-size: 1rem;
  color: #666;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}

footer {
  padding: 32px 48px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.footer-logo span { color: var(--accent); }

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 120px 20px 50px; gap: 26px; }
  .hero-bg-text { font-size: 34vw; left: -5px; bottom: -20px; }
  h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .pool-card:nth-child(3) { margin-left: 0; }
  .steps, .roles, .stats-section { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .cta-section { padding: 110px 20px; }
  footer { padding: 24px 20px; flex-direction: column; gap: 10px; }
}
