body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0A0A0A;
  color: #CCCCCC;
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url('background.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  z-index: 1;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: #C29F6C;
  transition: all 0.3s ease;
}

.highlight:hover {
  color: #f0c674;
  text-shadow: 0 0 12px #f0c674, 0 0 22px #f0c674;
  cursor: default;
}

p {
  margin-bottom: 40px;
  font-size: 1.25rem;
  color: #DDDDDD;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-dark {
  background-color: #1A1A1A;
  border: 1px solid #444;
  color: white;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-dark::placeholder {
  color: #aaa;
}

.form-dark:focus {
  background-color: #1A1A1A;
  border: 1px solid #C29F6C;
  outline: none;
  box-shadow: 0 0 0 3px rgba(194, 159, 108, 0.3);
  color: white;
}

.neon-btn {
  background: #D4A75C;
  color: #0A0A0A;
  font-weight: 600;
  padding: 16px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #f0c674;
  box-shadow: 0 0 18px #f0c674, 0 0 30px #f0c674;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.1rem;
  }

  .hero .container {
    padding: 60px 15px;
  }
}
