:root {
  --bg-dark: #1a1a1a;
  --bg-light: #2c2c2c;
  --text: #f2f2f2;
  --accent: #daa520;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
}

header {
  background: #111;
  padding: 1.5rem;
  text-align: center;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
  url('https://images.unsplash.com/photo-1603791440384-56cd371ee9a7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero h1 {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
}

.section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.notice {
  background: #222;
  color: var(--accent);
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type=email],
input[type=text] {
  padding: 1rem;
  border-radius: 5px;
  border: none;
  background: #333;
  color: #fff;
}

label {
  font-size: .95rem;
  color: #ccc;
}

button {
  padding: .9rem;
  border: none;
  background: var(--accent);
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #f1c351;
}

.honeypot {
  display: none;
}

footer {
  text-align: center;
  color: #777;
  padding: 2rem;
  font-size: .85rem;
}
