body {
  margin: 0;
  font-family: 'montserrat', Sans-Serif;
  background: #0b0b0b;
  color: #e6e6e6;
}

/* ===== AGE GATE ===== */
#age-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}

#age-gate h1 {
  color: #d4af37; /* dorado elegante */
  font-size: 34px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#age-gate p {
  font-size: 16px;
  opacity: 0.8;
}

#accept-age {
  margin-top: 25px;
  padding: 14px 32px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#reject-age {
  margin-top: 25px;
  padding: 14px 32px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}
#accept-age:hover {
  background: #d4af37;
  color: #000;
}

/* ===== CONTENIDO ===== */
#site-content h2,
#site-content h3 {
  color: #7A0C1E;
  font-family: "playfair display" serif;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 2px;
}

#site-content {
  padding: 40px;
}

/* ===== TARJETAS ===== */
.profile-card {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 15px;
  width: 220px;
}
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero {
  position: relative;
}
.girls-section {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.girl-card {
  background-color: #111;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.girl-card:hover {
  transform: scale(1.05);
}

.status {
  background-color: #00c853;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  font-size: 16px;
}

.girl-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.girl-name {
  color: #fff;
  text-align: center;
  margin: 10px 0 5px;
}

.girl-desc {
  color: #ccc;
  text-align: center;
  font-size: 14px;
  padding: 0 10px 15px;
}
.hidden {
  display: none;
}

.submenu {
  margin-top: 10px;
  background: #111;
  padding: 10px;
  border-radius: 8px;
}

.submenu a {
  display: block;
  padding: 8px;
  color: #d4af37;
  text-decoration: none;
}
.titulo-principal {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #7A0C14;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(20px);
  animation: entradaTitulo 1.1s ease-out forwards;
}

@keyframes entradaTitulo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.titulo-principal {
  transition: 
    transform 0.4s ease,
    color 0.4s ease,
    letter-spacing 0.4s ease;
}

.titulo-principal:hover {
  transform: scale(1.02);
  color: #8E0F18;
  letter-spacing: 4px;
}
.titulo-principal {
  text-shadow: 0 0 12px rgba(122,12,20,0,35);
}
/* ===== SECCIÓN ===== */

.premium-section {
    padding: 50px 20px;
    background: #0f0f0f;
}

.premium-title {
    text-align: center;
    font-size: 26px;
    color: #d4af37;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

/* ===== CARD ===== */

.premium-card {
    position: relative;
    background: #111;
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    cursor: pointer;
}

/* Borde dorado animado */

.premium-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(
        120deg,
        transparent,
        #d4af37,
        #f5d76e,
        #d4af37,
        transparent
    );
    background-size: 300% 300%;
    animation: goldMove 4s linear infinite;
    z-index: -1;
}

@keyframes goldMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.premium-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.premium-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
}

.premium-name {
    font-size: 26px;
    color: #8b0000; /* rojo velvet */
    font-weight: bold;
    margin-bottom: 8px;
}

.premium-city {
    font-size: 16px;
    color: #222;
    font-weight: 500;
}
