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

:root {
  --bg: #13151A;
  --surface: #1E2028;
  --surface-light: #2D2E37;
  --text: #FFFFFF;
  --text-secondary: #9CA3AF;
  --primary: #D6FF60;
  --primary-fg: #13151A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-fg);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214, 255, 96, 0.3);
  text-decoration: none;
}

/* Features */
.features {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}

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

.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* How it works */
.how-it-works {
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.how-it-works > p {
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

/* Footer */
footer {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

footer .links {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

footer .links a {
  color: var(--text-secondary);
}

footer .links a:hover {
  color: var(--text);
}

/* Legal Pages */
.legal {
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 14px;
}

.legal h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal p, .legal ul {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal ul {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
}

.legal strong {
  color: var(--text);
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  nav ul {
    gap: 16px;
  }

  nav ul a {
    font-size: 12px;
  }

  .features h2, .how-it-works h2, .cta-section h2 {
    font-size: 24px;
  }
}
