/* ==========================================================================
   1. VARIABLES GLOBALES (Configuración Única)
   ========================================================================== */
:root {
  --bg-dark: #0a0c10;           
  --bg-card: rgba(20, 24, 31, 0.75); 
  --accent-neon: #00ffcc;       
  --accent-radio: #ff3366;      
  --text-bright: #ffffff;
  --text-muted: #a0aec0;
  --border-color: rgba(44, 58, 78, 0.4);
  
  /* UNIFICACIÓN SANS-SERIF GENERAL */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Detalle técnico controlado para elementos muy específicos */
  --font-tech: 'Courier New', Courier, monospace; 
}

/* ==========================================================================
   2. ESTILOS BASE Y RESPETO A CONTENEDORES
   ========================================================================== */
body {
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(rgba(26, 35, 50, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 50, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  background-attachment: fixed;
  
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 16px;          
  line-height: 1.6;         
  margin: 0;
  padding-top: 120px; 
}

/* Forzar herencia total en elementos interactivos y textos comunes */
input, button, select, textarea, a {
  font-family: inherit;
}

/* Consistencia y jerarquía robusta en encabezados */
strong, h1, h2, h3, h4, h5, h6 {
  color: var(--text-bright);
  font-family: var(--font-sans);
  font-weight: 800;           /* Títulos fuertes e impactantes */
  line-height: 1.2;         
  letter-spacing: -0.5px;     /* Estética moderna para títulos grandes */
}

img {
  max-width: 100%;
  height: auto;
}

span, .accent-link {
  color: var(--accent-neon);
}

/* Elementos específicos con fuente técnica */
code, .terminal-style, .policy-meta, .play-tag {
  font-family: var(--font-tech);
}

/* Accesibilidad y Parches ocultos */
.skip-link {
  position: absolute; 
  top: -40px; 
  background: #000000;
  color: white;
  z-index: 100; 
}
.skip-link:focus { top: 0; }
#measuremg { position: absolute; left: -10000px; top: -100000px; }

/* ==========================================================================
   3. NAVEGACIÓN Y NAVBAR SUPERIOR
   ========================================================================== */
.main-head.site-artistic-theme {
  background-color: #0d0f12;
  border-bottom: 2px solid #1a2332;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-bright);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo img {
  height: 35px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.3));
}

.nav-logo .dot { color: var(--accent-neon); }
.nav-menu { display: flex; align-items: center; gap: 28px; }

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link .link-txt::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-neon);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--text-bright); }
.nav-link:hover .link-txt::after { width: 100%; }

/* Botones especiales de navegación */
.live-radio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-radio) !important;
  font-weight: 700;
  border: 1px solid rgba(255, 51, 102, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 51, 102, 0.05);
  transition: all 0.3s ease;
}

.live-radio-btn:hover {
  background: var(--accent-radio);
  color: #000000 !important;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.radio-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-radio);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.btn-buy-artistic {
  background-color: transparent;
  color: var(--accent-neon) !important;
  border: 2px solid var(--accent-neon);
  padding: 8px 20px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-buy-artistic:hover {
  background-color: var(--accent-neon);
  color: #000000 !important;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-bright);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* BARRA DE ANUNCIO FIJA SUPERIOR */
.top-announcement-bar {
  background-color: rgba(20, 24, 31, 0.9);
  backdrop-filter: blur(5px);
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 61px; /* Posicionado bajo el menú principal */
  left: 0;
  width: 100%;
  z-index: 9998;
  box-sizing: border-box;
}

.top-announcement-bar a {
  text-decoration: underline;
  font-weight: bold;
}

/* ==========================================================================
   4. COMPONENTES CON GLASSMORPHISM / CONTENEDORES CORE
   ========================================================================== */
.auth-card, .video-wrapper, .feature-block, .gaming-marketing-section {
  background: var(--bg-card) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 4px;
}

/* Efectos de Resplandor técnico de fondo (Glows) */
.hero-container, .features-section, .gaming-marketing-section {
  position: relative;
}

.hero-container::before, .gaming-marketing-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.08) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  z-index: -1;
  pointer-events: none;
}

.gaming-marketing-section::before {
  background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
  right: 10%;
  left: auto;
}

/* Tarjeta Centralizada de Login Unificada */
.auth-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;      
  padding: 40px 30px;
  position: relative;
}
/* Tarjeta Centralizada de Login Unificada */
.auth-card {
  max-width: 500px;
  margin: 0 auto 0 0; /* Cambiado: Se pega a la izquierda (top, right, bottom, left) */
  text-align: left;      
  padding: 40px 30px;
  position: relative;
}

.auth-card h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

/* ==========================================================================
   5. HERO, FORMULARIOS Y PROCESADORES
   ========================================================================== */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.hero-tagline {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.hero-subtagline {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.update-notice {
  color: var(--accent-radio); 
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
}

.cyber-form { margin: 30px 0 20px 0; }

.input-group input {
  width: 100%;
  background: rgba(13, 15, 18, 0.6);
  border: 1px solid rgba(44, 58, 78, 0.8);
  padding: 12px;
  color: #fff;
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: var(--accent-neon);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
  outline: none;
}

.btn-start-now {
  width: 100%;
  background: var(--accent-neon);
  color: #000;
  border: none;
  padding: 14px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-start-now:hover {
  box-shadow: 0 0 15px rgba(0,255,204,0.6);
  transform: translateY(-1px);
}

.divider-line {
  height: 1px;
  background: #1a2332;
  margin: 25px 0;
}

.paypal-container {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  background: rgba(0, 255, 204, 0.03);
  padding: 15px;
  border-radius: 4px;
  border: 1px dashed rgba(0, 255, 204, 0.3);
}

.btn-paypal-submit {
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   6. GALERÍAS, ECO-SISTEMAS Y SECCIÓN DE VIDEO
   ========================================================================== */
.features-section, .compatibility-ecosystem, .video-showcase {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #0d1117;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--accent-neon);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.gallery-item img {
  width: 100%;
  display: block;
  filter: brightness(0.95) contrast(1.05); 
  transition: filter 0.3s ease, transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px;
  text-align: left;
  box-sizing: border-box;
}

.item-overlay h3 { margin: 0 0 5px 0; font-size: 1.1rem; }
.item-overlay a, .item-overlay p { color: var(--accent-neon); font-size: 0.85rem; text-decoration: none; }

.video-wrapper {
  max-width: 800px;
  margin: 30px auto;
  padding: 15px;
}

.video-wrapper video { width: 100%; }
.video-info { margin-top: 15px; text-align: left; }
.yt-link { color: var(--accent-radio); font-weight: bold; }

/* ==========================================================================
   7. SECCIÓN GAMING / ENTRETENIMIENTO
   ========================================================================== */
.gaming-marketing-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  border-top: 3px solid var(--accent-radio); 
}

.gaming-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.gaming-text { flex: 1; min-width: 300px; text-align: left; }
.gaming-media { flex: 1; min-width: 300px; position: relative; }
.gaming-media img { width: 100%; border: 1px solid #2c3a4e; }

.btn-gaming-explore {
  display: inline-block;
  margin-top: 15px;
  background: transparent;
  border: 2px solid var(--accent-radio);
  color: var(--accent-radio);
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-gaming-explore:hover {
  background: var(--accent-radio);
  color: #fff;
  box-shadow: 0 0 15px rgba(255,51,102,0.5);
}

.gaming-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.feature-block { padding: 20px; }
.feature-block ul { padding-left: 20px; }
.feature-block li { margin-bottom: 10px; line-height: 1.4; }

/* ==========================================================================
   8. FOOTER & COMPONENTES FLOTANTES
   ========================================================================== */
.site-footer {
  background: #090a0d;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #1a2332;
  margin-top: 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  gap: 20px;
}

.os-icons img {
  height: 25px;
  margin: 0 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.os-icons img:hover { opacity: 1; }

.footer-links a, .footer-bottom a {
  color: var(--text-muted);
  margin: 0 15px;
  text-decoration: none;
}
.footer-links a:hover, .footer-bottom a:hover { color: var(--accent-neon); }

.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: transform 0.3s;
}
.whatsapp-floating img { width: 60px; height: 60px; }
.whatsapp-floating:hover { transform: scale(1.1); }

/* Tablas responsivas generales */
.entry {
  overflow-x: auto;
  display: block;
}
.privacy-policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
}

/* ==========================================================================
   9. SISTEMA RESPONSIVE INTEGRADO
   ========================================================================== */
@media (max-width: 992px) {
  .menu-toggle { display: block; }

  .menu-toggle.open .hamburger-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .menu-toggle.open .hamburger-icon span:nth-child(2) { opacity: 0; }
  .menu-toggle.open .hamburger-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
.nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    
    /* 🔴 CAMBIO 1: Fondo oscuro sólido para que NO se traslape con el texto de abajo */
    background-color: #0d0f12; 
    /* Opcional: si quieres mantener un toque glassmorphic, usa un blur muy denso */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border-bottom: 3px solid var(--accent-neon);
    padding: 20px 0; /* Reducimos padding vertical */
    gap: 15px;       /* Espaciado más compacto entre enlaces */
    
    /* 🔴 CAMBIO 2: Centrado elegante en lugar de estirado rígido */
    align-items: center; 
    text-align: center;
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-sizing: border-box;
    
    /* 🔴 CAMBIO 3: Sombra intensa para dar efecto de que flota sobre la página */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* 🔴 CAMBIO 4: Enlaces móviles más limpios */
  .nav-link { 
    font-size: 1rem; 
    padding: 8px 20px; 
    width: fit-content; /* El subrayado neón solo medirá lo que mide el texto */
  }
  
  .live-radio-btn { 
    justify-content: center; 
    width: auto;
    margin: 0 auto; 
  }
  
  .btn-buy-artistic { 
    text-align: center; 
    margin-top: 5px;
    width: auto;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  body { padding-top: 140px; }
  .top-announcement-bar { top: 65px; }
  .footer-top { flex-direction: column; }
  .hero-tagline { font-size: 1.6rem; }

  .yappy-section {
    flex-direction: column !important;
    text-align: center;
  }
  .yappy-section div {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

/* ==========================================================================
   10. SECCIÓN LEGAL Y POLÍTICAS (Optimización y Corrección)
   ========================================================================== */

/* Forzar la alineación a la izquierda para el texto legal y corregir centrado */
.privacy-policy-container {
  max-width: 900px; /* Reducido de 1200px para mejorar la legibilidad del texto */
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left; /* Corrige el centrado heredado de .features-section */
  box-sizing: border-box;
}

/* Encabezado de la Política */
.policy-header {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.policy-header h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

/* Metadatos superiores con fuente técnica */
.policy-meta {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meta-divider {
  color: var(--accent-neon);
}

/* Bloques de sección de políticas */
.policy-block {
  margin-bottom: 40px;
}

.policy-block h2 {
  font-size: 1.4rem;
  color: var(--text-bright);
  border-left: 3px solid var(--accent-neon);
  padding-left: 15px;
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.policy-block p {
  margin-bottom: 15px;
  color: var(--text-muted);
  text-align: justify;
}

/* Alertas de aviso destacadas */
.highlight-notice {
  color: var(--text-bright);
  border-left: 3px solid var(--accent-radio);
  padding-left: 15px;
  font-weight: 600;
}

/* Notas de seguridad y del sistema (Efecto Glassmorphic Neón) */
.security-note {
  background: rgba(255, 51, 102, 0.02);
  border: 1px solid var(--accent-radio);
  padding: 20px;
  margin: 25px 0;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.05);
}

/* Listas Cyberpunk */
.cyber-list {
  margin: 15px 0;
}

.cyber-list li {
  position: relative;
  list-style: none;
  margin-bottom: 10px;
  padding-left: 5px;
}

/* Viñeta personalizada con estilo neón */
.cyber-list li::before {
  content: "»";
  color: var(--accent-neon);
  font-weight: bold;
  display: inline-block;
  width: 15px;
  margin-left: -15px;
}

/* Terminal de contacto inferior */
.contact-terminal {
  border: 1px solid var(--border-color);
  background: rgba(10, 12, 16, 0.8) !important;
  box-shadow: inset 0 0 20px rgba(0, 255, 204, 0.05);
}

.contact-terminal .cyber-list li::before {
  content: ">";
  color: var(--accent-radio);
}

/* ==========================================================================
   11. SECCIÓN DE PREGUNTAS FRECUENTES (FAQ & SOPORTE)
   ========================================================================== */

/* Forzar que cualquier texto negro heredado sea brillante en modo oscuro */
.privacy-policy-container font[color="black"],
.privacy-policy-container span.notranslate font {
    color: var(--text-bright) !important;
}

/* Contenedor o banners estilo "Metaverse" */
.metaverse-grape {
    background: rgba(26, 35, 50, 0.4);
    border: 1px dashed var(--accent-neon);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.05);
}

.metaverse-grape h1, .metaverse-grape h2 {
    margin-top: 0;
}

/* Limpieza de alineaciones antiguas del HTML */
.privacy-policy-container h1, 
.privacy-policy-container h2, 
.privacy-policy-container p {
    text-align: left !important;
}

/* Estilo para los enlaces de traducción y enlaces generales */
.privacy-policy-container a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-policy-container a:hover {
    color: var(--text-bright);
    text-shadow: 0 0 8px var(--accent-neon);
}

/* Títulos de las Preguntas (H2) */
.privacy-policy-container h2 {
    font-size: 1.2rem;
    color: var(--text-bright);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* Añade un pequeño indicador dinámico antes de cada pregunta */
.privacy-policy-container h2::before {
    content: "?";
    color: var(--accent-radio);
    font-family: var(--font-tech);
    margin-right: 10px;
    font-weight: 800;
}

/* Estilo para las Listas Ordenadas e Inordenadas (LI) */
.privacy-policy-container ol {
    padding-left: 20px;
    margin: 20px 0;
}

.privacy-policy-container ol li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.privacy-policy-container ol li::marker {
    color: var(--accent-neon);
    font-weight: bold;
    font-family: var(--font-tech);
}

/* Remodelación Cyberpunk para las tablas de soporte viejas (#std-pricing-table) */
#std-pricing-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 4px;
    margin: 20px 0 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#std-pricing-table div[align="left"] {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

#std-pricing-table ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    border-left: 2px solid var(--accent-radio);
    padding-left: 15px;
}

#std-pricing-table ul div {
    margin-bottom: 5px;
}

#std-pricing-table ul div b {
    color: var(--text-bright);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

/* Ajuste de imágenes en línea (Google, Paypal, Whatsapp) */
.privacy-policy-container img[align="absMiddle"],
.privacy-policy-container img[ALIGN="absmiddle"] {
    vertical-align: middle;
    max-height: 24px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}