body {
  margin: 0;
  background: #0b0b0b;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  margin-bottom: 30px;
}

h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 0;
}

.subtitle {
  color: #b3b3b3;
  font-size: 20px;
  margin-bottom: 16px;
}

.lead {
  color: #9a9a9a;
  line-height: 1.7;
  max-width: 760px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

button,
.button-link {
  background: #f7931a;
  color: black;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.button-secondary {
  background: transparent;
  color: white;
  border: 1px solid #333;
}

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

.card {
  background: #111;
  border: 1px solid #222;
  border-radius: 22px;
  padding: 28px;
}

.card p,
.card li {
  color: #c8c8c8;
  line-height: 1.7;
}

.small {
  color: #8a8a8a;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 16px;
}

.stat-label {
  color: #8c8c8c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.notice.error {
  background: #2a1111;
  border: 1px solid #552222;
  color: #ffb4b4;
}

.notice.success {
  background: #112516;
  border: 1px solid #1f5b2d;
  color: #b8ffca;
}

.footer {
  margin-top: 30px;
}

a {
  color: #f7931a;
}

@media (max-width: 800px) {
  h1 {
    font-size: 40px;
  }

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

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