body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #ece9e6, #ffffff);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}




































.container {
  text-align: center;
  max-width: 600px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
}

#access-code {
  padding: 10px;
  width: 80%;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#submit-code {
  padding: 10px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#submit-code:hover {
  background-color: #219150;
}

#game-section {
  display: none;
  margin-top: 20px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.card {
  width: 100px;
  height: 140px;
  background-image: url('../imagen/regalo/fondo-carta.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.gift-name {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

#gift {
  margin-top: 20px;
}

#gift img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

.logo {
  display: block;
  margin: 0 auto 15px auto; /* centrado horizontal + espacio abajo */
  max-width: 150px; /* tamaño máximo */
  height: auto;
}

.Regresar {
  padding: 10px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.Regresar:hover {
  background-color: #219150;
}
.Carito {
  font-size: 30px; /* Puedes ajustar el tamaño según lo que necesites */
  text-decoration: none; /* Opcional, quita el subrayado */
}
@media (max-width: 600px) {
  .container {
    padding: 20px;
    max-width: 90%;
  }
}