/* Strendus Slot - Tokyo Street Theme CSS */
/* Color Palette: Neon Pink #FF1493, Cyan #00FFFF, Purple #9400D3, Dark #0D0D1A */

:root {
    --neon-pink: #FF1493;
    --neon-cyan: #00FFFF;
    --neon-purple: #9400D3;
    --dark-bg: #0D0D1A;
    --darker-bg: #070710;
    --card-bg: #151528;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D0;
    --gold: #FFD700;
    --success: #00FF88;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--neon-cyan); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Container */
.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.encabezado {
    background: linear-gradient(180deg, var(--darker-bg) 0%, transparent 100%);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.nav-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-sitio {
    height: 50px;
    width: auto;
}

.menu-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: width 0.3s ease;
}

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

/* CTA Button */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    color: var(--text-primary);
}

.btn-secundario {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Hero Section */
.hero-seccion {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-contenido {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-titulo {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.3);
}

.hero-subtitulo {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.seccion-oscura {
    background: var(--darker-bg);
}

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

.seccion-titulo h2 {
    position: relative;
    display: inline-block;
}

.seccion-titulo h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
}

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

.juego-tarjeta {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.juego-tarjeta:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

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

.juego-info {
    padding: 1.5rem;
}

.juego-info h3 {
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}

.juego-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.caracteristica-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(148, 0, 211, 0.2);
    transition: all 0.3s ease;
}

.caracteristica-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(148, 0, 211, 0.2);
}

.caracteristica-icono {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Bonus Section */
.bono-seccion {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(148, 0, 211, 0.1) 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.bono-imagen {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.bono-monto {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 800;
}

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

.pago-item {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
}

.pago-item img {
    height: 40px;
    width: auto;
}

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

.opinion-tarjeta {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--neon-pink);
}

.opinion-cabecera {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.opinion-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-cyan);
}

.opinion-autor h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.opinion-autor span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.opinion-estrellas {
    color: var(--gold);
    margin-bottom: 1rem;
}

.opinion-fecha {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

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

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-pregunta {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--neon-cyan);
}

.faq-respuesta {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* About Section */
.sobre-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-imagen {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

/* License */
.licencia-contenido {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

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

/* Footer */
.pie-pagina {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

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

.pie-columna h4 {
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

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

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

.pie-columna a {
    color: var(--text-secondary);
}

.pie-columna a:hover {
    color: var(--neon-cyan);
}

.pie-inferior {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pie-inferior p {
    font-size: 0.875rem;
}

.edad-restriccion {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 20, 147, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-pink);
    transform: translateY(-3px);
}

/* Responsible Gaming */
.juego-responsable {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.juego-responsable h3 {
    color: var(--success);
}

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

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb span {
    color: var(--neon-cyan);
}

/* Support Section */
.soporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.soporte-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.soporte-item h4 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-titulo {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .menu-nav {
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-principal {
        justify-content: center;
        text-align: center;
    }
    
    .sobre-contenido {
        grid-template-columns: 1fr;
    }
    
    .seccion {
        padding: 3rem 0;
    }
    
    .bono-seccion {
        padding: 2rem 1rem;
    }
    
    .bono-monto {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-titulo {
        font-size: 1.875rem;
    }
    
    .menu-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

.btn-cta {
    animation: neonPulse 2s infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-pink { color: var(--neon-pink); }
.text-cyan { color: var(--neon-cyan); }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
