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

:root {
  --bg-black: #080808;
  --gold: #d4a017;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
}

body {
  font-family: system-ui, 'Segoe UI', sans-serif;
  background: var(--bg-black);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #1a1a1a;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

.logo::before {
  content: '♚';
  font-size: 1.75rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Main content */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-black);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

/* Features grid */
.features {
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.feature-card {
  background: #0f0f0f;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateX(4px);
}

.feature-card h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* How it works */
.how-it-works {
  padding: 4rem 1rem;
  background: #0a0a0a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--gold);
  color: var(--bg-black);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
}

/* Stats strip */
.stats {
  padding: 3rem 1rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Footer */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Content pages */
.content-page {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content-page h2 {
  color: var(--gold);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page h3 {
  color: var(--text-main);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-page p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-page ul {
  color: var(--text-muted);
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.content-page a {
  color: var(--gold);
  text-decoration: none;
}

.content-page a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  background: #0f0f0f;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--text-main);
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background: var(--gold);
  color: var(--bg-black);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.info-box {
  background: #0f0f0f;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  margin-top: 2rem;
}

.info-box p {
  color: var(--text-muted);
}

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

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
