/* Stake Casino - Crypto Premium Theme */
:root {
    --naranja-principal: #ff6b00;
    --naranja-claro: #ff9500;
    --dorado: #ffd700;
    --negro-profundo: #0d0d0d;
    --negro-carbon: #1a1a1a;
    --gris-texto: #b0b0b0;
    --gradiente-crypto: linear-gradient(135deg, var(--naranja-principal), var(--dorado));
    --sombra-naranja: 0 0 30px rgba(255, 107, 0, 0.3);
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--negro-profundo);
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

.logo-texto {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradiente-crypto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-principal {
    display: flex;
    gap: 2rem;
}

.nav-principal a {
    color: var(--gris-texto);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-principal a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradiente-crypto);
    transition: width 0.3s ease;
}

.nav-principal a:hover {
    color: var(--naranja-principal);
}

.nav-principal a:hover::after {
    width: 100%;
}

.boton-cta {
    background: var(--gradiente-crypto);
    color: var(--negro-profundo);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--sombra-naranja);
    border: none;
    cursor: pointer;
}

.boton-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.5);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    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.5;
}

.hero-fondo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.95) 100%);
}

.hero-contenido {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-contenido h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--gradiente-crypto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-contenido p {
    font-size: 1.2rem;
    color: var(--gris-texto);
    margin-bottom: 2rem;
}

.bono-destacado {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.bono-destacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradiente-crypto);
}

.bono-destacado h2 {
    font-size: 1rem;
    color: var(--naranja-claro);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.bono-destacado .monto {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradiente-crypto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bono-destacado .extra {
    color: var(--dorado);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Sections */
.seccion {
    padding: 5rem 0;
}

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

.seccion-titulo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradiente-crypto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seccion-titulo p {
    color: var(--gris-texto);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Games Grid */
.juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.juego-card {
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.juego-card:hover {
    transform: translateY(-10px);
    border-color: var(--naranja-principal);
    box-shadow: var(--sombra-naranja);
}

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

.juego-card-contenido {
    padding: 1.5rem;
}

.juego-card-contenido h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--naranja-claro);
}

.juego-card-contenido p {
    color: var(--gris-texto);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.caracteristica-item {
    text-align: center;
    padding: 2rem;
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.caracteristica-item:hover {
    border-color: var(--dorado);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.caracteristica-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.caracteristica-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dorado);
}

.caracteristica-item p {
    color: var(--gris-texto);
}

/* Payment Methods */
.pagos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pago-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.pago-item:hover {
    border-color: var(--naranja-principal);
    box-shadow: var(--sombra-naranja);
}

.pago-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pago-item span {
    color: var(--gris-texto);
    font-weight: 500;
}

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

.faq-item {
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-pregunta {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-pregunta:hover {
    color: var(--naranja-principal);
}

.faq-pregunta::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--naranja-principal);
}

.faq-item.activo .faq-pregunta::after {
    content: '−';
}

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

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

.faq-respuesta p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gris-texto);
}

/* Author */
.autor-seccion {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.autor-imagen img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--naranja-principal);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.autor-info h3 {
    font-size: 1.4rem;
    color: var(--naranja-claro);
    margin-bottom: 0.3rem;
}

.autor-info .cargo {
    color: var(--dorado);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.autor-info p {
    color: var(--gris-texto);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(13, 13, 13, 0.95);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

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

.breadcrumb-lista li::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--naranja-principal);
}

.breadcrumb-lista li:last-child::after {
    content: '';
}

.breadcrumb-lista a {
    color: var(--naranja-claro);
    text-decoration: none;
}

.breadcrumb-lista li:last-child {
    color: var(--gris-texto);
}

/* Page Content */
.pagina-contenido {
    padding: 3rem 0;
}

.pagina-contenido h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradiente-crypto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pagina-contenido h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--naranja-claro);
}

.pagina-contenido h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dorado);
}

.pagina-contenido p {
    color: var(--gris-texto);
    margin-bottom: 1.5rem;
}

.pagina-contenido ul, .pagina-contenido ol {
    color: var(--gris-texto);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.pagina-contenido li {
    margin-bottom: 0.5rem;
}

.imagen-destacada {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.tabla-contenido {
    background: var(--negro-carbon);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tabla-contenido h4 {
    color: var(--naranja-principal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tabla-contenido ul {
    list-style: none;
    padding: 0;
}

.tabla-contenido a {
    color: var(--naranja-claro);
    text-decoration: none;
}

.tabla-contenido a:hover {
    color: var(--dorado);
}

.info-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--dorado);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.info-box h4 {
    color: var(--dorado);
    margin-bottom: 0.5rem;
}

.info-box p {
    margin: 0;
}

/* Footer */
.footer {
    background: var(--negro-carbon);
    border-top: 1px solid rgba(255, 107, 0, 0.15);
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: var(--naranja-principal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

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

.footer-col a:hover {
    color: var(--naranja-principal);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-badges img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.footer-bottom p {
    color: var(--gris-texto);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.juego-responsable {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.juego-responsable img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-principal {
        display: none;
    }
    
    .hero-contenido h1 {
        font-size: 2.2rem;
    }
    
    .bono-destacado .monto {
        font-size: 2rem;
    }
    
    .autor-seccion {
        flex-direction: column;
        text-align: center;
    }
    
    .juegos-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes cryptoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.6); }
}

.boton-cta {
    animation: cryptoPulse 2s infinite;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
