/* Marathon Bet - Estilo Atleta Dorado */
/* CSS Original y Único - México 2026 */

:root {
    --oro-primario: #D4AF37;
    --oro-claro: #F4E4BA;
    --oro-oscuro: #B8860B;
    --oro-brillante: #FFD700;
    --verde-esmeralda: #0D4D4D;
    --verde-oscuro: #0A2E2E;
    --verde-profundo: #061A1A;
    --negro-elegante: #0A0A0A;
    --blanco-suave: #F8F8F8;
    --gris-dorado: #2A2A2A;
    --rojo-acento: #C41E3A;
    --fuente-principal: 'Playfair Display', Georgia, serif;
    --fuente-secundaria: 'Montserrat', 'Segoe UI', sans-serif;
    --sombra-dorada: 0 4px 20px rgba(212, 175, 55, 0.3);
    --sombra-profunda: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transicion-suave: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--fuente-secundaria);
    background: linear-gradient(135deg, var(--verde-profundo) 0%, var(--negro-elegante) 50%, var(--verde-oscuro) 100%);
    color: var(--blanco-suave);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

p {
    margin-bottom: 1rem;
    color: var(--blanco-suave);
    opacity: 0.95;
}

a {
    color: var(--oro-claro);
    text-decoration: none;
    transition: var(--transicion-suave);
}

a:hover {
    color: var(--oro-brillante);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Navegación */
.navegacion-principal {
    background: linear-gradient(180deg, rgba(10, 46, 46, 0.98) 0%, rgba(6, 26, 26, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 2px solid var(--oro-primario);
    box-shadow: var(--sombra-dorada);
    position: relative;
    z-index: 1000;
}

.nav-contenido {
    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: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.nombre-marca {
    font-family: var(--fuente-principal);
    font-size: 1.5rem;
    color: var(--oro-primario);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-nav {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-nav li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--blanco-suave);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transicion-suave);
    position: relative;
    overflow: hidden;
}

.menu-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--oro-brillante);
    transition: var(--transicion-suave);
    transform: translateX(-50%);
}

.menu-nav li a:hover::before {
    width: 80%;
}

.menu-nav li a:hover {
    color: var(--oro-brillante);
    background: rgba(212, 175, 55, 0.1);
}

.boton-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--oro-primario) 0%, var(--oro-oscuro) 100%);
    color: var(--negro-elegante);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transicion-suave);
    box-shadow: var(--sombra-dorada);
    text-decoration: none;
}

.boton-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--oro-brillante) 0%, var(--oro-primario) 100%);
    color: var(--negro-elegante);
}

/* Menú Móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--oro-primario);
    border-radius: 3px;
    transition: var(--transicion-suave);
}

/* Hero Section */
.seccion-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

.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.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 26, 26, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(13, 77, 77, 0.8) 100%);
}

.hero-contenido {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-titulo {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--oro-brillante) 0%, var(--oro-primario) 50%, var(--oro-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitulo {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--blanco-suave);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.boton-secundario {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--oro-primario);
    font-weight: 600;
    border: 2px solid var(--oro-primario);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transicion-suave);
    text-decoration: none;
}

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

/* Secciones */
.seccion {
    padding: 5rem 0;
    position: relative;
}

.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: 3px;
    background: linear-gradient(90deg, transparent, var(--oro-primario), transparent);
}

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

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

.juego-tarjeta {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transicion-suave);
    position: relative;
}

.juego-tarjeta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oro-oscuro), var(--oro-brillante), var(--oro-oscuro));
}

.juego-tarjeta:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-dorada);
    border-color: var(--oro-primario);
}

.juego-imagen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.juego-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicion-suave);
}

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

.juego-contenido {
    padding: 1.5rem;
}

.juego-contenido h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.juego-contenido p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.juego-tarjeta .boton-cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
}

/* Sección Promociones */
.promociones-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
}

.promociones-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Información de Autor */
.autor-seccion {
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.3) 0%, rgba(42, 42, 42, 0.5) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.autor-imagen {
    flex-shrink: 0;
}

.autor-imagen img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--oro-primario);
    box-shadow: var(--sombra-dorada);
}

.autor-info {
    flex: 1;
    min-width: 280px;
}

.autor-info h3 {
    margin-bottom: 0.5rem;
}

.autor-cargo {
    color: var(--oro-claro);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.autor-bio {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Métodos de Pago */
.pagos-seccion {
    background: linear-gradient(180deg, rgba(10, 46, 46, 0.5) 0%, rgba(6, 26, 26, 0.8) 100%);
}

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

.pago-item {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transicion-suave);
}

.pago-item:hover {
    border-color: var(--oro-primario);
    transform: translateY(-5px);
}

.pago-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pago-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pagos-imagen {
    margin-top: 2rem;
    text-align: center;
}

.pagos-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

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

.faq-item {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.faq-pregunta {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transicion-suave);
}

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

.faq-pregunta h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--oro-claro);
}

.faq-icono {
    color: var(--oro-primario);
    font-size: 1.5rem;
    transition: var(--transicion-suave);
}

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

.faq-respuesta {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.activo .faq-respuesta {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Reseñas */
.resenas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resena-tarjeta {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.resena-tarjeta::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--oro-primario);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.resena-estrellas {
    color: var(--oro-brillante);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.resena-texto {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.95;
}

.resena-autor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.resena-nombre {
    font-weight: 600;
    color: var(--oro-claro);
}

.resena-ubicacion {
    font-size: 0.9rem;
    opacity: 0.7;
}

.resena-fecha {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Licencia */
.licencia-contenido {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.licencia-imagen img {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--sombra-dorada);
}

.licencia-info {
    flex: 1;
    min-width: 300px;
}

/* Juego Responsable */
.responsable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsable-item {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.responsable-item h4 {
    margin-bottom: 1rem;
}

/* Soporte */
.soporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.soporte-item {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transicion-suave);
}

.soporte-item:hover {
    border-color: var(--oro-primario);
    transform: translateY(-5px);
}

.soporte-icono {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.soporte-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sobre Nosotros */
.sobre-contenido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.sobre-texto h3 {
    margin-top: 2rem;
}

.valores-lista {
    list-style: none;
    margin-top: 1.5rem;
}

.valores-lista li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.valores-lista li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--oro-primario);
}

/* Footer */
.pie-pagina {
    background: linear-gradient(180deg, rgba(6, 26, 26, 0.95) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--oro-primario);
    margin-top: 4rem;
}

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

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

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

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

.pie-columna ul li a {
    color: var(--blanco-suave);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transicion-suave);
}

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

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

.pie-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oro-primario);
    transition: var(--transicion-suave);
    font-size: 1.2rem;
}

.pie-social a:hover {
    background: var(--oro-primario);
    color: var(--negro-elegante);
}

.pie-inferior {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pie-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.pie-logos img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: var(--transicion-suave);
}

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

.pie-copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--oro-claro);
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--blanco-suave);
    opacity: 0.6;
    margin: 0 0.5rem;
}

/* Páginas Internas */
.pagina-header {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.pagina-contenido {
    padding: 3rem 0;
}

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

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

.contenido-principal p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.contenido-principal ul, .contenido-principal ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.contenido-principal li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.juego-hero {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.juego-hero-imagen {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.juego-hero-imagen img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--sombra-profunda);
}

.juego-hero-info {
    flex: 1;
    min-width: 300px;
}

.info-tabla {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

.info-tabla th, .info-tabla td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.info-tabla th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--oro-primario);
    font-weight: 600;
    width: 40%;
}

.info-tabla td {
    color: var(--blanco-suave);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-contenido {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-nav {
        justify-content: center;
    }
    
    .autor-seccion {
        flex-direction: column;
        text-align: center;
    }
    
    .licencia-contenido {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(6, 26, 26, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem;
        border-top: 1px solid var(--oro-primario);
    }
    
    .menu-nav.activo {
        display: flex;
    }
    
    .menu-nav li a {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-botones {
        flex-direction: column;
        align-items: center;
    }
    
    .boton-cta, .boton-secundario {
        width: 100%;
        max-width: 300px;
    }
    
    .pie-inferior {
        flex-direction: column;
        text-align: center;
    }
    
    .juego-hero {
        flex-direction: column;
    }
    
    .seccion {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .contenedor {
        padding: 0 1rem;
    }
    
    .juegos-grid {
        grid-template-columns: 1fr;
    }
    
    .resenas-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones */
@keyframes brilloDorado {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes flotar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animacion-brillo {
    animation: brilloDorado 2s ease-in-out infinite;
}

.animacion-flotar {
    animation: flotar 3s ease-in-out infinite;
}

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(135deg, var(--gris-dorado) 0%, var(--negro-elegante) 100%);
}

/* Print Styles */
@media print {
    .navegacion-principal, .pie-pagina, .boton-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    h1, h2, h3, h4 {
        color: black;
    }
}
