body {
  background-color: #000;
  color: #fff;
  font-family: "Golos Text", sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: #000 !important;
}

/* Hero */
.hero {
  height: 25vh;
  background: url("/media/request-bg.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 150px;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 45px;
  font-family: "goldeneye";
  margin-bottom: 10px;
}
.hero p {
  font-size: 17px;
  color: #ccc;
}

/* Form Section */
.form-section {
  padding: 80px 15px;
  background-color: #111;
}
.exclusive-form {
  max-width: 700px;
  margin: 0 auto;
  background: #000;
  border: 1px solid #333;
}
.form-label {
  font-weight: 600;
  color: #fff;
}
.form-control {
  background: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 0;
}
.form-control:focus {
  background: #111;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}
.btn-exclusive {
  background: #000;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px;
  text-transform: uppercase;
}
.btn-exclusive:hover {
  background: #fff;
  color: #000;
}
.disclaimer {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}

::selection {
  background: white;
  color: black;
}
