/* Fuente general */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fce4ec;
  text-align: center;
}

/* Encabezado */
header {
  padding: 30px 10px;
  border-bottom: 2px solid #f06292;
}

h1 {
  font-size: 2.2rem;
  color: #f06292;
  margin: 0;
}

p {
  margin-top: 8px;
  font-size: 1rem;
  color: #f8bbd0;
}

/* Sección principal */
.raffle-section {
  padding: 30px;
}

.raffle-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  margin: 20px auto;
  background-color: #2c2c2c;
  border: 2px solid #f06292;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raffle-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.raffle-price {
  font-size: 1.2rem;
  margin: 15px 0;
}

/* Formulario */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

input, select, button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

input, select {
  width: 80%;
  max-width: 300px;
}

button {
  background-color: #f06292;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ec407a;
}

/* Pie */
footer {
  margin-top: 40px;
  padding: 15px;
  border-top: 2px solid #f06292;
}

footer p {
  cursor: pointer;
  color: #f48fb1;
  transition: 0.3s;
}

footer p:hover {
  color: #ff80ab;
  text-decoration: underline;
}
