/* Contenedor del Pop-up */
#modal-edad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Tarjeta del aviso */
.modal-edad__card {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  border: 1px solid #333;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin: 20px;
}

.edad-card__title {
  color: #ff3e3e;
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edad-card__text {
  line-height: 1.6;
  color: #ccc;
  font-size: clamp(12px, 3vw, 18px);
  margin-bottom: 30px;
}

/* Botones */
.edad-options {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.edad-btn {
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: clamp(12px, 2.5vw, 16px);
  transition: transform 0.2s, background 0.3s;
}

.edad-btn__acept {
  background: #ff3e3e;
  color: white;
}

.edad-btn__acept:hover {
  background: #e63535;
  transform: scale(1.05);
}

.edad-btn__exit {
  background: transparent;
  color: #999;
  border: 1px solid #444;
}

.edad-btn__exit:hover {
  background: #333;
  color: white;
}

.edad-card__text-advertencia {
  font-size: clamp(10px, 2.5vw, 14px);
  line-height: 1;
  margin-top: 20px;
  color: #666;
}

/* Clase para ocultar el modal */
.hidden {
  display: none !important;
}
