/* Importación de fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

:root {
    --primary-red: #e63946;
    --dark-red: #b91c1c;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Estilos Automáticos para Elementos de Contenido */
h1, h2, h3 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: 2.5rem; border-left: 5px solid var(--primary-red); padding-left: 15px; }
h2 { font-size: 1.8rem; border-bottom: 2px solid #eee; padding-bottom: 10px; }
h3 { font-size: 1.4rem; color: var(--primary-red); }

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #475569;
    text-align: justify;
}

/* Listas estilizadas */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Tablas Responsivas Automáticas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

th {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
}

tr:hover { background-color: #fff1f2; }

/* Botones Universales */
a[href="/go/"], button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

a[href="/go/"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

/* Imágenes Responsivas */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 1rem auto;
}

/* Adaptación Móvil */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    table { font-size: 0.85rem; display: block; overflow-x: auto; }
    p { font-size: 1rem; }
}
/* Importación de fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --primary-red: #e63946;
    --dark-red: #b91c1c;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Estilos Automáticos para Elementos de Contenido */
h1, h2, h3, h4 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
}

h1 { 
    font-size: 2.2rem; 
    border-left: 5px solid var(--primary-red); 
    padding-left: 15px;
    text-transform: uppercase;
}

h2 { 
    font-size: 1.8rem; 
    margin-top: 2rem; 
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Botones Universales Legiano */
a[href="/go/"] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.2);
    text-align: center;
}

a[href="/go/"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
}

/* Estilos de Contenedores de Main */
main section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- ESTILOS ESPECÍFICOS DEL NUEVO CONTENIDO --- */

/* Banner Compacto */
.hero-compact {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-content h1 { color: white; font-size: 2rem; border: none; padding: 0; margin-bottom: 5px; }
.hero-content p { color: #cbd5e1; font-size: 1rem; margin-bottom: 15px; }

.bonus-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.pill {
    background: rgba(230, 57, 70, 0.15);
    color: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Cuadrícula de Slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.slot-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #fee2e2;
}

.slot-image {
    width: 100%;
    height: 140px;
    background-color: #e2e8f0; /* Placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.slot-info {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slot-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.slot-provider {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Adaptación Móvil Extrema (¡No se sale nada!) */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    
    .hero-compact {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hero-content h1 { font-size: 1.6rem; }
    
    .bonus-pills {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .slot-image { height: 110px; }
    .slot-info h4 { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr 1fr; /* Dos columnas en móviles muy pequeños */
    }
}
/* Nuevo Banner Premium */
.hero-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%), url('placeholder-casino-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    margin: 20px auto;
    max-width: 1160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Decoración abstracta de fondo */
.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Logo dentro del Banner */
.banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.banner-logo-icon {
    background: var(--primary-red);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
    transform: rotate(-5deg);
}

.banner-logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Bonos con Estilo "Glow" */
.bonus-badge-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.bonus-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.bonus-badge .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.bonus-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-top: 5px;
}

/* Animación del botón principal */
.hero-premium a[href="/go/"] {
    font-size: 1.1rem;
    padding: 16px 40px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

@media (max-width: 768px) {
    .hero-premium { padding: 40px 20px; border-radius: 0; margin: 0; }
    .banner-logo-text { font-size: 22px; }
}
/* Sección de Reseñas Premium */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.2rem;
    border: 2px solid var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.stars {
    color: #f59e0b; /* Color dorado */
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verified-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #10b981; /* Verde éxito */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .reviews-container {
        grid-template-columns: 1fr; /* Una columna en móviles pequeños */
    }
}
/* --- NAVEGACIÓN Y LOGO --- */
header {
    background: var(--white);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Diseño del Logo Premium */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-circle {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    transform: rotate(-3deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary-red);
}

/* Estilos del Menú */
.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-list li a:hover {
    color: var(--primary-red);
}

/* Botón de Hamburguesa para Móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: 0.3s;
}

/* Adaptación Móvil del Menú */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding-top: 50px;
        transition: 0.4s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        left: 0;
    }
}
/* --- ESTILOS ÚNICOS DEL HEADER --- */
.main-site-header {
    background: #ffffff;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-circle {
    background: linear-gradient(135deg, #e63946, #b91c1c);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 22px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-text span { color: #e63946; }

/* Menú */
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-list li a:hover { color: #e63946; }

.nav-promo { color: #e63946 !important; }

.nav-btn-login {
    background: #1e293b;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
}

/* Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #1e293b;
    border-radius: 3px;
    transition: 0.3s;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding-top: 40px;
        transition: 0.4s;
        gap: 30px;
    }

    .nav-list.active { left: 0; }
}
/* --- ESTILOS DE TEXTO CENTRADO AUTOMÁTICO --- */

/* Centrado para todos los encabezados */
h1, h2, h3, h4 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

/* El H1 lleva un detalle decorativo central en lugar de lateral */
h1 {
    font-size: 2.5rem;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 2rem;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

/* Centrado para párrafos */
p {
    text-align: center;
    max-width: 800px; /* Evita que las líneas sean demasiado largas y difíciles de leer */
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
}

/* Centrado para listas */
ul, ol {
    display: inline-block;
    text-align: left; /* El texto de la lista se lee mejor a la izquierda... */
    margin: 0 auto 1.5rem auto;
}

/* Contenedor para centrar la lista misma */
section, main, div {
    text-align: center; /* Esto centra los elementos inline-block como las listas y botones */
}

/* Centrado para Tablas */
table {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

th, td {
    text-align: center; /* Centra el contenido dentro de las celdas */
}

/* Centrado de imágenes */
img {
    margin: 20px auto;
    display: block;
}

/* Ajuste del botón para que siempre esté centrado */
a[href="/go/"] {
    display: inline-block;
    margin: 10px auto;
}
/* --- ESTILO PARA IMÁGENES CON MÁRGENES EN PC --- */
img {
    display: block;
    width: 100%;             /* En móviles ocupa todo el ancho */
    height: auto;
    margin: 30px auto;       /* Centrado vertical y horizontal */
    border-radius: 15px;     /* Bordes redondeados */
    transition: all 0.3s ease;
}

/* --- AJUSTES PARA PANTALLAS GRANDES (PC) --- */
@media (min-width: 992px) {
    img {
        /* Limitamos el ancho al 80% del contenedor o a un máximo de 850px */
        width: 80%; 
        max-width: 850px; 
        
        /* Forzamos los espacios laterales */
        margin-left: auto;
        margin-right: auto;
        
        /* Añadimos una sombra y un borde sutil para que resalte sobre el fondo */
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.05);
    }
}