/* Jackpotcity Bonus - Squirtle Ocean Theme CSS */
/* 杰尼龟海洋主题 - 全新原创设计 */

:root {
    --ocean-deep: #0a1628;
    --ocean-mid: #0d2847;
    --ocean-light: #1a4a7a;
    --aqua-primary: #00CED1;
    --aqua-bright: #40E0D0;
    --aqua-glow: #7FFFD4;
    --gold-primary: #FFD700;
    --gold-light: #FFEC8B;
    --gold-dark: #DAA520;
    --coral-accent: #FF7F50;
    --pearl-white: #F5F5F5;
    --bubble-blue: rgba(64, 224, 208, 0.3);
    --shell-pattern: linear-gradient(135deg, var(--aqua-primary) 0%, var(--ocean-light) 50%, var(--aqua-bright) 100%);
    --ocean-gradient: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--ocean-light) 100%);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --shadow-glow: 0 0 20px rgba(0, 206, 209, 0.4);
    --shadow-gold: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ocean-gradient);
    color: var(--pearl-white);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Bubble Animation Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--bubble-blue) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, var(--bubble-blue) 3px, transparent 3px),
        radial-gradient(circle at 40% 40%, var(--bubble-blue) 1px, transparent 1px),
        radial-gradient(circle at 60% 60%, var(--bubble-blue) 2px, transparent 2px),
        radial-gradient(circle at 90% 90%, var(--bubble-blue) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px, 90px 90px;
    animation: bubbleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bubbleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Container */
.contenedor {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header - Non-sticky */
.encabezado {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
    border-bottom: 3px solid var(--aqua-primary);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 206, 209, 0.2);
}

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

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

.logo-marca img {
    height: 70px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.nombre-marca {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation */
.navegacion-principal {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.navegacion-principal a {
    color: var(--pearl-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(0, 206, 209, 0.1);
    border: 1px solid transparent;
}

.navegacion-principal a:hover {
    background: var(--aqua-primary);
    color: var(--ocean-deep);
    border-color: var(--aqua-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.boton-jugar {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%) !important;
    color: var(--ocean-deep) !important;
    font-weight: 700 !important;
    padding: 12px 25px !important;
    box-shadow: var(--shadow-gold);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
}

/* Hero Section */
.seccion-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.seccion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-hero.webp') center/cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.seccion-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--ocean-deep), transparent);
    z-index: 1;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-contenido h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-contenido p {
    font-size: 1.3rem;
    color: var(--pearl-white);
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.boton-cta-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--coral-accent) 100%);
    color: var(--ocean-deep);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.boton-cta-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Section Titles */
.titulo-seccion {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--shell-pattern);
    border-radius: 2px;
}

/* Game Cards Section */
.seccion-juegos {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 206, 209, 0.05) 50%, transparent 100%);
}

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

.tarjeta-juego {
    background: linear-gradient(145deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--aqua-primary);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tarjeta-juego:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow), var(--shadow-gold);
}

.tarjeta-juego img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--aqua-primary);
}

.tarjeta-contenido {
    padding: 25px;
}

.tarjeta-contenido h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--aqua-bright);
    margin-bottom: 12px;
}

.tarjeta-contenido p {
    color: var(--pearl-white);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.boton-tarjeta {
    display: inline-block;
    background: var(--shell-pattern);
    color: var(--ocean-deep);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.boton-tarjeta:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transform: scale(1.05);
}

/* About Section */
.seccion-nosotros {
    padding: 80px 0;
    background: rgba(0, 206, 209, 0.03);
}

.contenido-nosotros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.texto-nosotros h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.texto-nosotros p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Expert Author Section */
.seccion-experto {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
    border-top: 2px solid var(--aqua-primary);
    border-bottom: 2px solid var(--aqua-primary);
}

.tarjeta-experto {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 206, 209, 0.08);
    border-radius: 20px;
    border: 1px solid var(--aqua-primary);
}

.foto-experto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: var(--shadow-gold);
}

.info-experto h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.info-experto .cargo {
    color: var(--aqua-bright);
    font-weight: 600;
    margin-bottom: 15px;
}

.info-experto p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Payment Methods */
.seccion-pagos {
    padding: 80px 0;
}

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

.metodo-pago {
    background: rgba(0, 206, 209, 0.1);
    border: 2px solid var(--aqua-primary);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.metodo-pago:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.metodo-pago img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.metodo-pago h4 {
    color: var(--aqua-bright);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* Reviews Section */
.seccion-opiniones {
    padding: 80px 0;
    background: rgba(0, 206, 209, 0.03);
}

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

.tarjeta-opinion {
    background: linear-gradient(145deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--aqua-primary);
    transition: all 0.3s ease;
}

.tarjeta-opinion:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
}

.opinion-cabecera {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.opinion-autor {
    font-weight: 700;
    color: var(--aqua-bright);
    font-size: 1.1rem;
}

.opinion-ciudad {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.opinion-estrellas {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.opinion-texto {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.opinion-fecha {
    font-size: 0.85rem;
    color: var(--aqua-primary);
    opacity: 0.8;
}

/* FAQ Section */
.seccion-faq {
    padding: 80px 0;
}

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

.item-faq {
    background: rgba(0, 206, 209, 0.08);
    border: 2px solid var(--aqua-primary);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.pregunta-faq {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aqua-bright);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pregunta-faq:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
}

.pregunta-faq::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

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

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

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

.respuesta-faq p {
    line-height: 1.8;
}

/* Responsible Gaming */
.seccion-responsable {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, #0a0a1a 100%);
    border-top: 3px solid var(--coral-accent);
}

.contenido-responsable {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contenido-responsable img {
    width: 100px;
    margin-bottom: 25px;
}

.contenido-responsable h2 {
    font-family: var(--font-display);
    color: var(--coral-accent);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contenido-responsable p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* License Section */
.seccion-licencia {
    padding: 60px 0;
    text-align: center;
}

.licencia-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.licencia-contenido img {
    width: 120px;
    height: auto;
}

.licencia-texto h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Footer */
.pie-pagina {
    background: var(--ocean-deep);
    border-top: 3px solid var(--aqua-primary);
    padding: 60px 0 30px;
}

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

.pie-seccion h4 {
    font-family: var(--font-display);
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--aqua-primary);
}

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

.pie-seccion ul li {
    margin-bottom: 12px;
}

.pie-seccion ul li a {
    color: var(--pearl-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pie-seccion ul li a:hover {
    color: var(--aqua-bright);
    transform: translateX(5px);
}

.pie-inferior {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 206, 209, 0.3);
}

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

.iconos-pagos-pie {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.iconos-pagos-pie img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.iconos-pagos-pie img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Breadcrumb */
.migas-pan {
    padding: 15px 0;
    background: rgba(0, 206, 209, 0.05);
    border-bottom: 1px solid rgba(0, 206, 209, 0.2);
}

.migas-pan ol {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.migas-pan li::after {
    content: '›';
    margin-left: 10px;
    color: var(--aqua-primary);
}

.migas-pan li:last-child::after {
    content: '';
}

.migas-pan a {
    color: var(--aqua-bright);
    text-decoration: none;
}

.migas-pan a:hover {
    color: var(--gold-primary);
}

.migas-pan span {
    color: var(--pearl-white);
    opacity: 0.7;
}

/* Inner Page Content */
.seccion-contenido-interno {
    padding: 60px 0;
}

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

.contenido-articulo h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-align: center;
}

.contenido-articulo h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--aqua-bright);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--aqua-primary);
}

.contenido-articulo h3 {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin: 30px 0 15px;
}

.contenido-articulo p {
    margin-bottom: 20px;
    line-height: 1.9;
}

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

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

.imagen-articulo {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    display: block;
    border-radius: 15px;
    border: 3px solid var(--aqua-primary);
    box-shadow: var(--shadow-glow);
}

.caja-info {
    background: rgba(0, 206, 209, 0.1);
    border: 2px solid var(--aqua-primary);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.caja-info h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contenido-nosotros {
        grid-template-columns: 1fr;
    }
    
    .hero-contenido h1 {
        font-size: 2.5rem;
    }
    
    .tarjeta-experto {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .encabezado .contenedor {
        flex-direction: column;
        text-align: center;
    }
    
    .navegacion-principal {
        justify-content: center;
    }
    
    .hero-contenido h1 {
        font-size: 2rem;
    }
    
    .titulo-seccion {
        font-size: 2rem;
    }
    
    .grilla-juegos {
        grid-template-columns: 1fr;
    }
    
    .grilla-opiniones {
        grid-template-columns: 1fr;
    }
    
    .contenido-articulo h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nombre-marca {
        font-size: 1.4rem;
    }
    
    .navegacion-principal a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .hero-contenido h1 {
        font-size: 1.6rem;
    }
    
    .boton-cta-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
