/* Casino Caliente en Vivo - Estilos Únicos 2026 */
:root {
  --rojo-caliente: #D32F2F;
  --naranja-fuego: #FF6F00;
  --dorado: #FFD700;
  --negro-profundo: #1A1A1A;
  --gris-oscuro: #2C2C2C;
  --blanco: #FFFFFF;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--negro-profundo) 0%, var(--gris-oscuro) 100%);
  color: var(--blanco);
  line-height: 1.7;
  overflow-x: hidden;
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Encabezado */
header {
  background: linear-gradient(90deg, var(--rojo-caliente) 0%, var(--naranja-fuego) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 111, 0, 0.3);
}

header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-contenedor img {
  height: 80px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.boton-cta {
  background: var(--dorado);
  color: var(--negro-profundo);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.boton-cta:hover {
  background: #FFC107;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Sección Hero */
.seccion-hero {
  background: url('../images/hero-principal.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 20px;
}

.seccion-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(255, 111, 0, 0.7) 100%);
}

.hero-contenido {
  position: relative;
  z-index: 2;
}

.hero-contenido h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-contenido p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.boton-grande {
  display: inline-block;
  background: var(--dorado);
  color: var(--negro-profundo);
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.boton-grande:hover {
  background: #FFC107;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Secciones */
section {
  padding: 80px 20px;
}

.seccion-clara {
  background: var(--gris-oscuro);
}

.seccion-oscura {
  background: var(--negro-profundo);
}

h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dorado);
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.3);
}

h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--naranja-fuego);
}

p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #E0E0E0;
}

/* Tarjetas de Juegos */
.grid-juegos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.tarjeta-juego {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.tarjeta-juego:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.5);
  border-color: var(--naranja-fuego);
}

.tarjeta-juego img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tarjeta-contenido {
  padding: 25px;
}

.tarjeta-contenido h3 {
  margin-top: 0;
  font-size: 24px;
}

.tarjeta-contenido p {
  font-size: 15px;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.boton-jugar {
  display: inline-block;
  background: var(--rojo-caliente);
  color: var(--blanco);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.boton-jugar:hover {
  background: var(--naranja-fuego);
  transform: scale(1.05);
}

/* Métodos de Pago */
.grid-pagos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.metodo-pago {
  background: var(--gris-oscuro);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.metodo-pago:hover {
  border-color: var(--dorado);
  transform: translateY(-5px);
}

.metodo-pago img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* FAQ */
.faq-item {
  background: var(--gris-oscuro);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--naranja-fuego);
}

.faq-item h3 {
  color: var(--dorado);
  margin-top: 0;
  font-size: 20px;
}

/* Reseñas */
.grid-resenas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tarjeta-resena {
  background: var(--gris-oscuro);
  padding: 30px;
  border-radius: 12px;
  border-top: 3px solid var(--dorado);
}

.resena-autor {
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 5px;
}

.resena-ubicacion {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.resena-estrellas {
  color: var(--dorado);
  font-size: 18px;
  margin-bottom: 15px;
}

/* Pie de Página */
footer {
  background: linear-gradient(90deg, var(--negro-profundo) 0%, var(--gris-oscuro) 100%);
  padding: 60px 20px 30px;
  border-top: 3px solid var(--naranja-fuego);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-columna h3 {
  color: var(--dorado);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-columna ul {
  list-style: none;
}

.footer-columna a {
  color: #B0B0B0;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-columna a:hover {
  color: var(--dorado);
}

.footer-inferior {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #888;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-contenido h1 {
    font-size: 36px;
  }
  
  .hero-contenido p {
    font-size: 18px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .grid-juegos {
    grid-template-columns: 1fr;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tarjeta-juego, .faq-item, .tarjeta-resena {
  animation: fadeIn 0.6s ease-out;
}
