/* ============================================
   MERIDIANBET CASINO - Tema Selva Mexicana
   Diseño Original 2026
   ============================================ */

/* Variables de Colores - Paleta Selva Mexicana */
:root {
    --verde-selva: #1a4d2e;
    --verde-bosque: #2d5a3f;
    --verde-hoja: #3d7a52;
    --verde-claro: #5a9c6f;
    --oro-azteca: #d4a534;
    --oro-claro: #e8c55a;
    --tierra-maya: #8b5a2b;
    --tierra-oscura: #5c3d1e;
    --crema-natural: #f5f0e1;
    --blanco-niebla: #fafaf7;
    --negro-noche: #0d1a12;
    --gris-piedra: #4a4a4a;
    --rojo-quetzal: #c41e3a;
    --azul-cenote: #1e5f74;
}

/* Reset y Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, var(--verde-selva) 0%, var(--negro-noche) 100%);
    color: var(--crema-natural);
    line-height: 1.7;
    min-height: 100vh;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--oro-azteca);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--crema-natural);
}

a {
    color: var(--oro-claro);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--oro-azteca);
}

/* Contenedor Principal */
.contenedor {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   ENCABEZADO - Navegación
   ============================================ */
.encabezado {
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--verde-bosque) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--oro-azteca);
    position: relative;
    z-index: 100;
}

.nav-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-marca {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-marca img {
    height: 50px;
    width: auto;
}

.nombre-marca {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--oro-azteca);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-navegacion {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.menu-navegacion li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--crema-natural);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-navegacion li a:hover {
    background: var(--verde-hoja);
    color: var(--oro-claro);
}

.boton-jugar {
    background: linear-gradient(135deg, var(--oro-azteca) 0%, var(--oro-claro) 100%);
    color: var(--negro-noche) !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 165, 52, 0.4);
    transition: all 0.3s ease;
}

.boton-jugar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 52, 0.6);
    background: linear-gradient(135deg, var(--oro-claro) 0%, var(--oro-azteca) 100%);
}

/* Menú Móvil */
.menu-toggle {
    display: none;
    background: var(--oro-azteca);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--negro-noche);
    font-weight: 600;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-navegacion {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--verde-bosque);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .menu-navegacion.activo {
        display: flex;
    }
    
    .menu-navegacion li {
        width: 100%;
    }
    
    .menu-navegacion li a {
        text-align: center;
    }
}

/* ============================================
   SECCIÓN HERO
   ============================================ */
.seccion-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.hero-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-contenido {
    max-width: 900px;
    z-index: 1;
}

.hero-titulo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--oro-azteca);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitulo {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--crema-natural);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-botones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.boton-primario {
    display: inline-block;
    background: linear-gradient(135deg, var(--oro-azteca) 0%, var(--oro-claro) 100%);
    color: var(--negro-noche);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(212, 165, 52, 0.5);
    transition: all 0.3s ease;
}

.boton-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 52, 0.7);
}

.boton-secundario {
    display: inline-block;
    background: transparent;
    color: var(--oro-claro);
    padding: 1rem 2.5rem;
    border: 2px solid var(--oro-claro);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.boton-secundario:hover {
    background: var(--oro-claro);
    color: var(--negro-noche);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.seccion {
    padding: 5rem 0;
}

.seccion-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-titulo h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.seccion-titulo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--oro-azteca), var(--verde-hoja));
    border-radius: 2px;
}

.seccion-descripcion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Fondo Alternado */
.fondo-oscuro {
    background: linear-gradient(180deg, var(--negro-noche) 0%, var(--verde-selva) 100%);
}

.fondo-claro {
    background: linear-gradient(180deg, var(--verde-bosque) 0%, var(--verde-selva) 100%);
}

/* ============================================
   TARJETAS DE JUEGOS
   ============================================ */
.juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.juego-tarjeta {
    background: linear-gradient(145deg, var(--verde-bosque) 0%, var(--verde-selva) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 52, 0.2);
}

.juego-tarjeta:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: var(--oro-azteca);
}

.juego-imagen {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.juego-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.juego-tarjeta:hover .juego-imagen img {
    transform: scale(1.1);
}

.juego-contenido {
    padding: 1.5rem;
}

.juego-contenido h3 {
    color: var(--oro-azteca);
    margin-bottom: 0.75rem;
}

.juego-contenido p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--crema-natural);
    opacity: 0.9;
}

.juego-boton {
    display: inline-block;
    background: var(--oro-azteca);
    color: var(--negro-noche);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.juego-boton:hover {
    background: var(--oro-claro);
    transform: translateX(5px);
}

/* ============================================
   INFORMACIÓN Y CARACTERÍSTICAS
   ============================================ */
.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.caracteristica-item {
    background: rgba(45, 90, 63, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--oro-azteca);
    transition: all 0.3s ease;
}

.caracteristica-item:hover {
    background: rgba(45, 90, 63, 0.8);
    transform: translateX(5px);
}

.caracteristica-item h4 {
    color: var(--oro-claro);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.caracteristica-icono {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oro-azteca);
    color: var(--negro-noche);
    font-weight: bold;
}

/* ============================================
   MÉTODOS DE PAGO
   ============================================ */
.pagos-contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pago-metodo {
    background: rgba(26, 77, 46, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 165, 52, 0.3);
    transition: all 0.3s ease;
}

.pago-metodo:hover {
    border-color: var(--oro-azteca);
    background: rgba(26, 77, 46, 0.9);
}

.pago-metodo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.pago-metodo h4 {
    color: var(--oro-claro);
    margin-bottom: 0.5rem;
}

.pago-metodo p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ============================================
   FAQ - PREGUNTAS FRECUENTES
   ============================================ */
.faq-lista {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(45, 90, 63, 0.4);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 52, 0.2);
}

.faq-pregunta {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--oro-claro);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-pregunta:hover {
    background: rgba(212, 165, 52, 0.1);
}

.faq-icono {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.activo .faq-icono {
    transform: rotate(45deg);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.activo .faq-respuesta {
    max-height: 500px;
}

.faq-respuesta-contenido {
    padding: 0 1.5rem 1.5rem;
    color: var(--crema-natural);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIOS / RESEÑAS
   ============================================ */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonio-tarjeta {
    background: linear-gradient(145deg, rgba(45, 90, 63, 0.6) 0%, rgba(26, 77, 46, 0.8) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 52, 0.2);
    position: relative;
}

.testimonio-estrellas {
    color: var(--oro-azteca);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonio-texto {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--crema-natural);
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--oro-azteca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--negro-noche);
    font-size: 1.25rem;
}

.autor-info h5 {
    color: var(--oro-claro);
    margin-bottom: 0.25rem;
}

.autor-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   SOBRE NOSOTROS
   ============================================ */
.sobre-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .sobre-contenido {
        grid-template-columns: 1fr;
    }
}

.sobre-texto h3 {
    color: var(--oro-azteca);
    margin-bottom: 1rem;
}

.sobre-texto p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.sobre-imagen img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ============================================
   LICENCIA Y SEGURIDAD
   ============================================ */
.licencia-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.licencia-badge {
    background: rgba(26, 77, 46, 0.7);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--oro-azteca);
    min-width: 200px;
}

.licencia-badge img {
    height: 80px;
    margin-bottom: 1rem;
}

.licencia-badge h4 {
    color: var(--oro-claro);
}

/* ============================================
   JUEGO RESPONSABLE
   ============================================ */
.responsable-contenido {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.3) 0%, rgba(92, 61, 30, 0.5) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--tierra-maya);
}

.responsable-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.responsable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.responsable-icono {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--tierra-maya);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crema-natural);
    font-weight: bold;
}

.edad-restriccion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rojo-quetzal);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

/* ============================================
   SOPORTE AL CLIENTE
   ============================================ */
.soporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.soporte-item {
    background: rgba(45, 90, 63, 0.5);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.soporte-item:hover {
    background: rgba(45, 90, 63, 0.8);
    transform: translateY(-5px);
}

.soporte-icono {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--oro-azteca), var(--oro-claro));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.soporte-item h4 {
    color: var(--oro-claro);
    margin-bottom: 0.75rem;
}

/* ============================================
   PIE DE PÁGINA
   ============================================ */
.pie-pagina {
    background: linear-gradient(180deg, var(--negro-noche) 0%, #050a07 100%);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--oro-azteca);
}

.pie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pie-columna h4 {
    color: var(--oro-azteca);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.pie-columna ul li {
    margin-bottom: 0.75rem;
}

.pie-columna ul li a {
    color: var(--crema-natural);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.pie-columna ul li a:hover {
    opacity: 1;
    color: var(--oro-claro);
    padding-left: 5px;
}

.pie-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pie-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--verde-bosque);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.pie-social a:hover {
    background: var(--oro-azteca);
    color: var(--negro-noche);
    transform: translateY(-3px);
}

.pie-pagos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.pie-pagos img {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.pie-pagos img:hover {
    opacity: 1;
}

.pie-inferior {
    border-top: 1px solid rgba(212, 165, 52, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.pie-inferior p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.pie-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pie-legal a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.pie-legal a:hover {
    opacity: 1;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.breadcrumb-lista {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-lista li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-lista li::after {
    content: '›';
    color: var(--oro-azteca);
}

.breadcrumb-lista li:last-child::after {
    display: none;
}

.breadcrumb-lista a {
    color: var(--crema-natural);
    opacity: 0.8;
}

.breadcrumb-lista a:hover {
    opacity: 1;
    color: var(--oro-claro);
}

.breadcrumb-lista li:last-child a {
    color: var(--oro-azteca);
    opacity: 1;
}

/* ============================================
   AUTOR / E-E-A-T
   ============================================ */
.autor-seccion {
    background: rgba(45, 90, 63, 0.4);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--oro-azteca);
}

.autor-perfil {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.autor-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--oro-azteca), var(--verde-hoja));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--negro-noche);
    flex-shrink: 0;
}

.autor-datos h4 {
    color: var(--oro-claro);
    margin-bottom: 0.5rem;
}

.autor-datos .titulo-profesional {
    color: var(--oro-azteca);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.autor-datos p {
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .autor-perfil {
        flex-direction: column;
        text-align: center;
    }
    
    .autor-foto {
        margin: 0 auto;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.texto-centro { text-align: center; }
.texto-izquierda { text-align: left; }
.texto-derecha { text-align: right; }

.margen-arriba { margin-top: 2rem; }
.margen-abajo { margin-bottom: 2rem; }

.oculto { display: none; }

.visible-movil {
    display: none;
}

@media (max-width: 768px) {
    .visible-movil {
        display: block;
    }
    
    .oculto-movil {
        display: none;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animacion-entrada {
    animation: fadeInUp 0.6s ease forwards;
}

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--verde-bosque) 0%, var(--verde-selva) 50%, var(--verde-bosque) 100%);
    background-size: 200% 100%;
}

/* ============================================
   PÁGINA DE JUEGO INDIVIDUAL
   ============================================ */
.juego-detalle-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--negro-noche) 100%);
}

.juego-detalle-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .juego-detalle-contenido {
        grid-template-columns: 1fr;
    }
}

.juego-info-tabla {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.juego-info-tabla tr {
    border-bottom: 1px solid rgba(212, 165, 52, 0.2);
}

.juego-info-tabla td {
    padding: 0.75rem 0;
}

.juego-info-tabla td:first-child {
    color: var(--oro-claro);
    font-weight: 600;
    width: 40%;
}

.articulo-contenido {
    max-width: 900px;
    margin: 0 auto;
}

.articulo-contenido h2 {
    margin-top: 2.5rem;
}

.articulo-contenido h3 {
    margin-top: 2rem;
    color: var(--oro-claro);
}

.articulo-contenido ul,
.articulo-contenido ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.articulo-contenido li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Print Styles */
@media print {
    .encabezado,
    .pie-pagina,
    .boton-jugar,
    .boton-primario,
    .boton-secundario {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* ============================================
   ARTÍCULO CONTENIDO - Páginas de Juegos
   ============================================ */
.articulo-contenido {
    max-width: 900px;
    margin: 0 auto;
}

.articulo-contenido h2 {
    color: var(--oro-azteca);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 165, 52, 0.3);
}

.articulo-contenido h2:first-child {
    margin-top: 0;
}

.articulo-contenido h3 {
    color: var(--oro-claro);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.articulo-contenido p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

.articulo-contenido ul, .articulo-contenido ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.articulo-contenido li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.articulo-contenido strong {
    color: var(--oro-claro);
}

/* Tabla de información del juego */
.juego-info-tabla {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(45, 90, 63, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.juego-info-tabla tr {
    border-bottom: 1px solid rgba(212, 165, 52, 0.2);
}

.juego-info-tabla tr:last-child {
    border-bottom: none;
}

.juego-info-tabla td {
    padding: 1rem 1.5rem;
}

.juego-info-tabla td:first-child {
    color: var(--oro-claro);
    font-weight: 600;
    width: 50%;
}

.juego-info-tabla td:last-child {
    text-align: right;
}

/* ============================================
   UTILIDADES
   ============================================ */
.texto-centro {
    text-align: center;
}

.margen-arriba {
    margin-top: 2rem;
}

/* ============================================
   RESPONSIVE ADICIONAL
   ============================================ */
@media (max-width: 480px) {
    .hero-botones {
        flex-direction: column;
    }
    
    .boton-primario, .boton-secundario {
        width: 100%;
        text-align: center;
    }
    
    .juegos-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .pie-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}
