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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: #0a0a0a url('/imagenes/pattern-background.webp') repeat;
    background-attachment: fixed;
}

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

/* Header con fondo elegante */
.encabezado-sitio {
    background: linear-gradient(135deg, #1a0000 0%, #3d0a0a 50%, #1a0000 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nombre-marca {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.navegacion-principal ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navegacion-principal a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.navegacion-principal a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.boton-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.boton-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Hero Section con background */
.seccion-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/imagenes/hero-background.webp') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.seccion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.seccion-hero .contenedor {
    position: relative;
    z-index: 1;
}

.seccion-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    animation: fadeInDown 1s ease;
}

.seccion-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secciones de contenido */
.seccion-contenido {
    background: rgba(20, 20, 20, 0.95);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.seccion-contenido h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.seccion-contenido p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Grid de juegos */
.grid-juegos, .juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card-juego, .juego-card {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a0a0a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.card-juego:hover, .juego-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.card-juego img, .juego-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-juego:hover img, .juego-card:hover img {
    transform: scale(1.1);
}

.card-juego h3, .juego-card h3 {
    color: #FFD700;
    padding: 20px;
    font-size: 1.5rem;
}

.card-juego p, .juego-card p {
    padding: 0 20px 20px;
    color: #ccc;
}

/* Contenedor de artículos */
.contenedor-articulo {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(20, 20, 20, 0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.contenedor-articulo h1 {
    color: #FFD700;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contenedor-articulo h2 {
    color: #FFA500;
    font-size: 2rem;
    margin: 40px 0 20px;
}

.contenedor-articulo img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.contenedor-articulo ul, .contenedor-articulo ol {
    margin: 20px 0 20px 40px;
    line-height: 1.9;
}

.contenedor-articulo li {
    margin-bottom: 12px;
}

/* Grid interno para contenido */
.grid-interno {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.card-interna {
    background: rgba(40, 10, 10, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-interna h3 {
    color: #FFD700;
    margin: 15px 0;
}

.card-interna img {
    width: 100%;
    border-radius: 8px;
}

/* Botón CTA grande */
.boton-cta-grande {
    display: inline-block;
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 30px 0;
    box-shadow: 0 6px 25px rgba(34, 139, 34, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.boton-cta-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(34, 139, 34, 0.7);
}

/* Accordion FAQ */
.accordion-item {
    background: rgba(40, 10, 10, 0.8);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.accordion-header {
    background: linear-gradient(135deg, #3d0a0a 0%, #2a0a0a 100%);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #4d0a0a 0%, #3a0a0a 100%);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-content.active {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
.pie-de-pagina {
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
    padding: 40px 0;
    text-align: center;
    color: #999;
    margin-top: 60px;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .encabezado-sitio .contenedor {
        flex-direction: column;
        gap: 20px;
    }
    
    .navegacion-principal ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .seccion-hero h1 {
        font-size: 2.2rem;
    }
    
    .contenedor-articulo {
        padding: 30px 20px;
    }
    
    .grid-juegos, .juegos-grid {
        grid-template-columns: 1fr;
    }
}
/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primario: #8B0000;
    --color-secundario: #FFD700;
    --color-acento: #228B22;
    --color-fondo: #1C1C1C;
    --color-texto: #F5F5F5;
    --color-gris: #4A4A4A;
    --fuente-principal: 'Georgia', serif;
    --fuente-secundaria: 'Arial', sans-serif;
}

body {
    font-family: var(--fuente-secundaria);
    background-color: var(--color-fondo);
    color: var(--color-texto);
    line-height: 1.7;
    font-size: 18px;
}

.contenedor {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.encabezado-sitio {
    background: linear-gradient(135deg, var(--color-primario), #5A0000);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    border-radius: 50%;
    border: 3px solid var(--color-secundario);
}

.nombre-marca {
    font-family: var(--fuente-principal);
    font-size: 22px;
    font-weight: bold;
    color: var(--color-secundario);
}

.navegacion-principal ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navegacion-principal a {
    color: var(--color-texto);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navegacion-principal a:hover {
    color: var(--color-secundario);
}

.boton-cta {
    background-color: var(--color-secundario);
    color: var(--color-primario);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Hero Section */
.seccion-hero {
    background: linear-gradient(to bottom, #2C2C2C, var(--color-fondo));
    padding: 60px 0;
}

.contenedor-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contenido-hero h1 {
    font-family: var(--fuente-principal);
    font-size: 42px;
    color: var(--color-secundario);
    margin-bottom: 25px;
    line-height: 1.3;
}

.contenido-hero p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #D3D3D3;
}

.boton-cta-grande {
    display: inline-block;
    background-color: var(--color-acento);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.boton-cta-grande:hover {
    background-color: #1B7A1B;
}

.contenedor-hero img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Main Content */
.seccion-principal {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.contenido-articulo h2 {
    font-family: var(--fuente-principal);
    font-size: 32px;
    color: var(--color-secundario);
    margin: 40px 0 20px;
}

.contenido-articulo p {
    margin-bottom: 20px;
    text-align: justify;
}

.contenido-articulo ul, .contenido-articulo ol {
    margin: 20px 0 20px 30px;
}

.contenido-articulo li {
    margin-bottom: 12px;
}

/* Juegos Grid */
.juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.juego-card {
    background-color: #2A2A2A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.juego-card:hover {
    transform: translateY(-8px);
}

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

.juego-card h3 {
    font-size: 24px;
    color: var(--color-secundario);
    padding: 20px 20px 10px;
}

.juego-card p {
    padding: 0 20px 15px;
    font-size: 16px;
    color: #C0C0C0;
}

.boton-juego {
    display: block;
    background-color: var(--color-primario);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.boton-juego:hover {
    background-color: #A00000;
}

/* Sidebar */
.barra-lateral {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
}

.widget {
    margin-bottom: 35px;
}

.widget h3 {
    color: var(--color-secundario);
    font-size: 22px;
    margin-bottom: 18px;
}

.lista-top-casinos {
    list-style: decimal;
    padding-left: 20px;
}

.lista-top-casinos li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.lista-guias {
    list-style: none;
}

.lista-guias li {
    margin-bottom: 12px;
}

.lista-guias a {
    color: var(--color-texto);
    text-decoration: none;
    transition: color 0.3s;
}

.lista-guias a:hover {
    color: var(--color-secundario);
}

/* FAQ Section */
.seccion-faq {
    padding: 60px 0;
    background-color: #252525;
}

.seccion-faq h2 {
    font-family: var(--fuente-principal);
    font-size: 36px;
    color: var(--color-secundario);
    text-align: center;
    margin-bottom: 40px;
}

.accordion-item {
    background-color: #2A2A2A;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background-color: var(--color-primario);
    color: white;
    padding: 18px 25px;
    text-align: left;
    font-size: 19px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #A00000;
}

.accordion-content {
    padding: 20px 25px;
    display: none;
}

.accordion-content p {
    line-height: 1.7;
}

/* Opiniones */
.seccion-opiniones {
    padding: 60px 0;
}

.seccion-opiniones h2 {
    font-family: var(--fuente-principal);
    font-size: 36px;
    color: var(--color-secundario);
    text-align: center;
    margin-bottom: 40px;
}

.grid-opiniones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tarjeta-opinion {
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.opinion-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.nombre-usuario {
    font-weight: bold;
    color: var(--color-secundario);
}

.fecha-opinion {
    color: #888;
    font-size: 14px;
}

.puntuacion-estrellas {
    color: var(--color-secundario);
    font-size: 20px;
    margin-bottom: 15px;
}

/* Footer */
.pie-de-pagina {
    background-color: #1A1A1A;
    padding: 50px 0 20px;
    border-top: 3px solid var(--color-primario);
}

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

.footer-columna h4 {
    color: var(--color-secundario);
    font-size: 20px;
    margin-bottom: 18px;
}

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

.footer-columna li {
    margin-bottom: 10px;
}

.footer-columna a {
    color: var(--color-texto);
    text-decoration: none;
    transition: color 0.3s;
}

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

.redes-sociales {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.redes-sociales a {
    background-color: var(--color-primario);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.redes-sociales a:hover {
    background-color: var(--color-secundario);
    color: var(--color-primario);
}

.logos-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.logos-footer span {
    background-color: var(--color-secundario);
    color: var(--color-primario);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor-hero {
        grid-template-columns: 1fr;
    }
    
    .seccion-principal {
        grid-template-columns: 1fr;
    }
    
    .navegacion-principal ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .encabezado-sitio .contenedor {
        flex-direction: column;
        gap: 20px;
    }
    
    .contenido-hero h1 {
        font-size: 32px;
    }
}

.imagen-centrada {
    display: block;
    margin: 30px auto;
}

.seccion-contenido {
    margin: 40px 0;
}

.autor-box {
    display: flex;
    gap: 25px;
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.autor-box img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.autor-box h3 {
    color: var(--color-secundario);
    margin-bottom: 12px;
}
