:root {
  --primary: #8B5CF6;
  --primary-hover: #7c3aed;
  --background: #121212;
  --surface: #1E1E1E;
  --text: #F3F4F6;
  --text-secondary: #9CA3AF;
  --border: #374151;
  --error: #EF4444;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 3rem 1rem;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-weight: 500;
}

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

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-hover);
  color: white;
  text-decoration: none;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

h1, h2, h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; margin-top: 2rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.disclaimer {
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--primary);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.disclaimer strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.faq-q {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

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