/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(to right, #0a0a0a, #1b1b1b);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

header p {
  font-size: 1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.5;
}

.btn-enter {
  background: #e6b800;
  color: #000;
  padding: 15px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn-enter:hover {
  background: #ffcc00;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

section {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  text-align: left;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

section p, section li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
