:root {
  --bg-color: #0f0f13;
  --text-color: #e0e0e0;
  --primary-color: #ffd700; /* Gold */
  --secondary-color: #ff6b6b;
  --accent-color: #4ecdc4;
  --card-bg: #1a1a20;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --spacing-unit: 1rem;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Header */
header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -1px;
}

nav a {
  margin-left: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at center, #2a2a35 0%, var(--bg-color) 70%);
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px;
}

.hero p {
  font-size: 1.25rem;
  color: #aaa;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-card p {
  color: #888;
  font-size: 0.95rem;
}

/* Footer */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.9rem;
}

footer a {
  margin: 0 0.5rem;
}

footer a:hover {
  color: var(--primary-color);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 8rem auto 4rem;
  padding: 2rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #ccc;
}
