/* ===================================================
   style.css - Estilos para popup, selección de idioma
   y contenido de la web (tarjetas, galería, botones)
   =================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg,#07111d 0%,#0b1d2e 40%,#081421 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* ------------------ HERO ------------------ */
.hero {
  min-height: 100vh;
  padding: 30px 8%;
}

/* ------------------ NAVBAR ------------------ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00ffe0;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #00ffe0;
}

/* ------------------ LANGUAGE SWITCHER ------------------ */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.language-switcher span {
  color: #00ffe0;
}

.language-switcher a {
  padding: 6px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.language-switcher a:hover {
  background: rgba(0,255,224,0.12);
  color: #00ffe0;
}

/* ------------------ BUTTON ------------------ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #00ffe0;
  color: #050816;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,255,224,0.4);
}

/* ------------------ POPUP ------------------ */
#disclaimer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.popup-box {
  width: 100%;
  max-width: 650px;
  background: linear-gradient(145deg, rgba(10,18,30,0.98), rgba(7,12,22,0.98));
  border: 1px solid rgba(0,255,224,0.15);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0,255,224,0.12);
  text-align: center;
}

/* Contenido en dos columnas */
.popup-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.popup-cell {
  flex: 1 1 45%;
  text-align: left;
}

.popup-button {
  text-align: center;
  margin-top: 25px;
}

.popup-box h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffe0;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.popup-box p {
  color: #d5deea;
  margin-bottom: 12px;
  line-height: 1.6;
}

.warning {
  color: #ff6b6b;
  font-weight: 600;
}

#close-popup {
  padding: 12px 28px;
  background: #00ffe0;
  color: #07111d;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

#close-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,224,0.35);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #050816;
  color: #9ca3af;
}

.visit-counter {
  margin-top: 20px;
  text-align: center;
}

.counter-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8fa3b8;
  text-decoration: none;
  transition: 0.3s;
}

.counter-text:hover {
  color: #00ffe0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .popup-content {
    flex-direction: column;
  }
  .popup-cell {
    flex: 1 1 100%;
  }
}