/* Reset & Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #f0c14b, #c09f45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.subhead {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-top: 0.75rem;
}

/* Content Section */
.content {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.08);
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff3c0;
}

/* Button */
.button {
  display: inline-block;
  background: linear-gradient(90deg, #f0c14b, #c09f45);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.button:hover {
  background: linear-gradient(90deg, #ffd700, #b8860b);
}
