/* CSS personalizado extraído de index.html */

/* Aquí irá todo el contenido de la etiqueta <style> del HTML principal */ 

body {
  font-family: "Inter", sans-serif;
  background: #0e0e11;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Colores de texto para gaming */
.text-gamer-teal {
  color: #00ffff !important;
}
.text-gamer-green {
  color: #00ff7f !important;
}
.text-gamer-pink {
  color: #ff1493 !important;
}
.text-gamer-magenta {
  color: #ff00ff !important;
}
.text-gamer-cyan {
  color: #00ffff !important;
}

/* Colores de texto para legibilidad */
.text-gray-300 {
  color: #d1d5db !important;
}
.text-dusk-textPrimary {
  color: #ffffff !important;
}
.text-dusk-textSecondary {
  color: #e5e7eb !important;
}
.text-dusk-accentSuccess {
  color: #18f2b2 !important;
}
.text-dusk-accentPrimary {
  color: #4b5cc4 !important;
}

/* Colores de acento para fondos */
.from-dusk-accentPrimary {
  --tw-gradient-from: #4b5cc4;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 92, 196, 0));
}
.to-dusk-accentSuccess {
  --tw-gradient-to: #18f2b2;
}
.from-dusk-accentSuccess {
  --tw-gradient-from: #18f2b2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(24, 242, 178, 0));
}
.to-dusk-accentAlert {
  --tw-gradient-to: #ff6b5e;
}
.from-dusk-accentAlert {
  --tw-gradient-from: #ff6b5e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 107, 94, 0));
}

/* Colores de fondo para gamer */
.bg-gamer-magenta {
  background-color: #ff00ff !important;
}
.bg-gamer-cyan {
  background-color: #00ffff !important;
}
.bg-gamer-green {
  background-color: #00ff7f !important;
}
.bg-gamer-teal {
  background-color: #00ffff !important;
}
.bg-gamer-pink {
  background-color: #ff1493 !important;
}

/* Sombras para gamer */
.shadow-gamer-cyan\/50 {
  box-shadow: 0 10px 15px -3px rgba(0, 255, 255, 0.5), 0 4px 6px -2px rgba(0, 255, 255, 0.25) !important;
}
.shadow-gamer-green\/50 {
  box-shadow: 0 10px 15px -3px rgba(0, 255, 127, 0.5), 0 4px 6px -2px rgba(0, 255, 127, 0.25) !important;
}

/* Gradientes para gamer */
.from-gamer-magenta {
  --tw-gradient-from: #ff00ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 0, 255, 0));
}
.to-gamer-cyan {
  --tw-gradient-to: #00ffff;
}
.from-gamer-cyan {
  --tw-gradient-from: #00ffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 255, 255, 0));
}
.to-gamer-green {
  --tw-gradient-to: #00ff7f;
}
.from-gamer-green {
  --tw-gradient-from: #00ff7f;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 255, 127, 0));
}
.to-gamer-pink {
  --tw-gradient-to: #ff1493;
}
.from-gamer-pink {
  --tw-gradient-from: #ff1493;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 20, 147, 0));
}
.to-gamer-teal {
  --tw-gradient-to: #00ffff;
}
.from-gamer-teal {
  --tw-gradient-from: #00ffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 255, 255, 0));
}

/* Bordes para gamer */
.border-gamer-magenta {
  border-color: #ff00ff !important;
}
.border-gamer-cyan {
  border-color: #00ffff !important;
}
.border-gamer-green {
  border-color: #00ff7f !important;
}
.border-gamer-pink {
  border-color: #ff1493 !important;
}
.border-gamer-teal {
  border-color: #00ffff !important;
}

/* Rings para gamer (focus) */
.focus\:ring-gamer-magenta:focus {
  --tw-ring-color: #ff00ff !important;
}
.focus\:ring-gamer-cyan:focus {
  --tw-ring-color: #00ffff !important;
}

/* Placeholder */
.placeholder-gray-400::placeholder {
  color: #9ca3af !important;
}

/* Backdrop blur */
.backdrop-blur-lg {
  backdrop-filter: blur(16px) !important;
}
.backdrop-blur-md {
  backdrop-filter: blur(12px) !important;
}

/* Colores de fondo grises */
.bg-gray-700 {
  background-color: #374151 !important;
}
.bg-gray-800\/50 {
  background-color: rgba(31, 41, 55, 0.5) !important;
}

/* Colores de texto adicionales */
.text-black {
  color: #000000 !important;
}

/* Fondo para secciones */
.bg-dusk-surface {
  background: linear-gradient(135deg, #1a1b22 0%, #2c2d36 100%) !important;
}

.bg-dusk-bg {
  background: #0e0e11 !important;
}

/* Custom animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px #18f2b2);
  }
  50% {
    filter: drop-shadow(0 0 12px #18f2b2);
  }
}
@keyframes neonPulse {
  0%,
  100% {
    text-shadow: 0 0 5px #4b5cc4, 0 0 10px #4b5cc4;
  }
  50% {
    text-shadow: 0 0 8px #4b5cc4, 0 0 15px #4b5cc4;
  }
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}
.glow-animation {
  animation: glow 3s ease-in-out infinite;
}
.neon-text {
  animation: neonPulse 2s ease-in-out infinite;
}

/* NeonDusk gradient backgrounds */
.gradient-bg {
  background: linear-gradient(
    135deg,
    #4b5cc4 0%,
    #18f2b2 50%,
    #4b5cc4 100%
  );
}
.gradient-dusk {
  background: linear-gradient(
    135deg,
    #4b5cc4 0%,
    #18f2b2 25%,
    #ff6b5e 50%,
    #4b5cc4 75%,
    #18f2b2 100%
  );
}
.gradient-text {
  background: linear-gradient(135deg, #4b5cc4 0%, #18f2b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-dusk {
  background: linear-gradient(135deg, #4b5cc4 0%, #18f2b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle borders and effects */
.neon-border {
  border: 1px solid #18f2b2;
  box-shadow: 0 0 8px rgba(24, 242, 178, 0.3);
}
.neon-border-primary {
  border: 1px solid #4b5cc4;
  box-shadow: 0 0 8px rgba(75, 92, 196, 0.3);
}
.neon-glow {
  box-shadow: 0 0 15px rgba(24, 242, 178, 0.2),
    inset 0 0 15px rgba(24, 242, 178, 0.05);
}

/* Drop shadows for images and icons */
.icon-glow {
  filter: drop-shadow(0 0 8px rgba(24, 242, 178, 0.4));
}
.icon-glow-primary {
  filter: drop-shadow(0 0 8px rgba(75, 92, 196, 0.4));
}
.icon-glow-accent {
  filter: drop-shadow(0 0 8px rgba(255, 107, 94, 0.4));
}
.icon-glow-cyan {
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}
.icon-glow-magenta {
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4));
}
.icon-glow-pink {
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
}
.icon-glow-green {
  filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.4));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #1a1b22;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #4b5cc4, #18f2b2);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff6b5e, #18f2b2);
}

/* NeonDusk cards */
.gaming-card {
  background: linear-gradient(145deg, #1a1b22 0%, #2c2d36 100%);
  border: 1px solid #2c2d36;
  transition: all 0.3s ease;
}
.gaming-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 25px rgba(75, 92, 196, 0.2), 0 0 0 1px #4b5cc4;
}

/* Pricing cards adjustments */
@media (max-width: 768px) {
  .pricing-card-popular {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Modern navbar styles */
.navbar-modern {
  background: linear-gradient(
    90deg,
    rgba(26, 27, 34, 0.95) 0%,
    rgba(44, 45, 54, 0.95) 50%,
    rgba(26, 27, 34, 0.95) 100%
  );
  border-bottom: 1px solid rgba(75, 92, 196, 0.2);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled {
  background: rgba(14, 14, 17, 0.98) !important;
  border-bottom: 1px solid rgba(24, 242, 178, 0.3);
  box-shadow: 0 8px 32px rgba(75, 92, 196, 0.15);
}

/* Modern nav links */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4b5cc4, #18f2b2);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

/* Gaming specific gradients and borders */
.neon-border-pink {
  border: 1px solid #ff1493;
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}
.gradient-text-gamer {
  background: linear-gradient(
    135deg,
    #ff00ff 0%,
    #00ffff 50%,
    #00ff7f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-gamer {
  background: linear-gradient(
    135deg,
    #1a1b22 0%,
    #2c2d36 20%,
    rgba(255, 0, 255, 0.4) 40%,
    rgba(0, 255, 255, 0.4) 50%,
    rgba(0, 255, 127, 0.4) 60%,
    #2c2d36 80%,
    #1a1b22 100%
  );
  position: relative;
}

.gradient-gamer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 27, 34, 0.6) 0%,
    rgba(44, 45, 54, 0.7) 50%,
    rgba(26, 27, 34, 0.6) 100%
  );
  z-index: 0;
}

.gradient-gamer > * {
  position: relative;
  z-index: 1;
}

/* Parallax Gaming Elements */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8; /* Aumentado de 0.7 a 0.8 (10% menos transparente) */
  transition: transform 0.1s ease-out;
}

.gaming-particle {
  width: 40px;
  height: 40px;
  background: rgba(24, 242, 178, 0.15); /* Aumentado de 0.1 a 0.15 */
  border: 1px solid rgba(24, 242, 178, 0.4); /* Aumentado de 0.3 a 0.4 */
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(24, 242, 178, 0.3), 0 0 30px rgba(24, 242, 178, 0.1); /* Efecto neón agregado */
}

.gaming-particle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #18F2B2;
  border-radius: 50%;
  box-shadow: 0 0 15px #18F2B2, 0 0 25px rgba(24, 242, 178, 0.6); /* Efecto neón mejorado */
}

.gaming-hexagon {
  width: 60px;
  height: 34px;
  background: rgba(75, 92, 196, 0.15); /* Aumentado de 0.1 a 0.15 */
  border: 1px solid rgba(75, 92, 196, 0.4); /* Aumentado de 0.3 a 0.4 */
  position: relative;
  margin: 17px 0;
  animation: hexagonRotate 12s linear infinite;
  box-shadow: 0 0 15px rgba(75, 92, 196, 0.3), 0 0 30px rgba(75, 92, 196, 0.1); /* Efecto neón agregado */
}

.gaming-hexagon::before,
.gaming-hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.gaming-hexagon::before {
  bottom: 100%;
  border-bottom: 17px solid rgba(75, 92, 196, 0.15); /* Aumentado de 0.1 a 0.15 */
}

.gaming-hexagon::after {
  top: 100%;
  border-top: 17px solid rgba(75, 92, 196, 0.15); /* Aumentado de 0.1 a 0.15 */
}

.gaming-circuit {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 0, 255, 0.15) 30%, /* Aumentado de 0.1 a 0.15 */
    rgba(255, 0, 255, 0.15) 70%, /* Aumentado de 0.1 a 0.15 */
    transparent 70%);
  border: 1px solid rgba(255, 0, 255, 0.4); /* Aumentado de 0.3 a 0.4 */
  animation: circuitPulse 6s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3), 0 0 30px rgba(255, 0, 255, 0.1); /* Efecto neón agregado */
}

.gaming-gear {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 255, 255, 0.4); /* Aumentado de 0.3 a 0.4 */
  border-radius: 50%;
  position: relative;
  animation: gearRotate 10s linear infinite;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1); /* Efecto neón agregado */
}

.gaming-gear::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid rgba(0, 255, 255, 0.3); /* Aumentado de 0.2 a 0.3 */
  border-radius: 50%;
  border-top-color: rgba(0, 255, 255, 0.7); /* Aumentado de 0.6 a 0.7 */
  border-right-color: rgba(0, 255, 255, 0.7); /* Aumentado de 0.6 a 0.7 */
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  25% { transform: translateY(-15px) scale(1.1); }
  50% { transform: translateY(-30px) scale(0.9); }
  75% { transform: translateY(-15px) scale(1.1); }
}

@keyframes hexagonRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); } /* Aumentado de 0.3 a 0.4 */
  50% { opacity: 0.9; transform: scale(1.1); } /* Aumentado de 0.8 a 0.9 */
}

@keyframes gearRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.parallax-icon {
  width: 60px;
  height: 60px;
  opacity: 0.6; /* Aumentado de 0.4 a 0.6 (10% menos transparente) */
  filter: drop-shadow(0 0 15px rgba(24, 242, 178, 0.4)) drop-shadow(0 0 25px rgba(24, 242, 178, 0.2)); /* Efecto neón mejorado */
  animation: iconFloat 7s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
} 

/* Clases personalizadas para controlar el tamaño de imágenes de noticias */
.news-image-small {
  width: 100%;
  height: 200px !important; /* 200px de altura */
  object-fit: cover;
}

.news-image-medium {
  width: 100%;
  height: 300px !important; /* 300px de altura */
  object-fit: cover;
}

.news-image-large {
  width: 100%;
  height: 400px !important; /* 400px de altura */
  object-fit: cover;
}

.news-image-custom {
  width: 100%;
  max-width: 500px !important; /* Ancho máximo de 500px */
  height: auto !important; /* Altura automática para mantener proporción */
  object-fit: cover;
}

/* Para el artículo destacado específicamente */
.featured-news-image {
  width: 100%;
  height: 250px !important; /* Altura personalizable */
  object-fit: cover;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .news-image-small,
  .news-image-medium,
  .news-image-large,
  .featured-news-image {
    height: 180px !important;
  }
  
  .news-image-custom {
    max-width: 100% !important;
  }
} 