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

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.hero h1 {
  font-size: 70px;
  color: #D4AF37;
  letter-spacing: 5px;
}

.hero p {
  color: #ccc;
  font-size: 18px;
}

/* BUTTONS */
.btn {
  padding: 12px 25px;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #D4AF37;
  color: black;
}

/* SECTIONS */
.section {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
}

h2 {
  color: #D4AF37;
}

/* CARDS */
.card {
  background: #141414;
  padding: 20px;
  margin: 15px 0;
  border-left: 3px solid #D4AF37;
}

.card.link {
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.card.link:hover {
  background: #1b1b1b;
}

/* VIDEO BOX */
.video {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #666;
  border-top: 1px solid #222;
}

/* SMALL HERO */
.small-hero {
  padding: 80px;
  text-align: center;
  background: #111;
}

.small-hero h1 {
  color: #D4AF37;
}