/* betmaster bono sin deposito - Diseño único 2026 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --naranja-primario: #FF6B35;
    --naranja-secundario: #FF8C42;
    --purpura-primario: #8B2FC9;
    --purpura-secundario: #A855F7;
    --gradiente-principal: linear-gradient(135deg, #FF6B35 0%, #FF8C42 25%, #A855F7 75%, #8B2FC9 100%);
    --gradiente-hover: linear-gradient(135deg, #8B2FC9 0%, #A855F7 25%, #FF8C42 75%, #FF6B35 100%);
    --fondo-oscuro: #1A0B2E;
    --fondo-medio: #2D1B4E;
    --texto-claro: #FFFFFF;
    --texto-gris: #C4C4C4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--fondo-oscuro);
    color: var(--texto-claro);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navegación */
nav {
    background: rgba(26, 11, 46, 0.95);
    padding: 1.2rem 0;
    border-bottom: 3px solid transparent;
    border-image: var(--gradiente-principal) 1;
}

nav .contenedor {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav .logo img {
    height: 55px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--texto-claro);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

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

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--gradiente-principal);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero .contenedor {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

/* Botones */
.btn-jugar {
    display: inline-block;
    background: var(--fondo-oscuro);
    color: var(--texto-claro);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    border: 3px solid var(--texto-claro);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-jugar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradiente-hover);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-jugar:hover::before {
    width: 400px;
    height: 400px;
}

.btn-jugar span {
    position: relative;
    z-index: 1;
}

.btn-jugar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Secciones */
section {
    padding: 5rem 2rem;
}

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

h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradiente-principal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.juego-card {
    background: var(--fondo-medio);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.juego-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradiente-principal);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.juego-card:hover::before {
    opacity: 1;
}

.juego-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

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

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

.juego-info {
    padding: 2rem;
}

.juego-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--naranja-secundario);
}

.juego-info p {
    color: var(--texto-gris);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.pago-item {
    background: var(--fondo-medio);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pago-item:hover {
    border-color: var(--naranja-primario);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 47, 201, 0.3);
}

.pago-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.pago-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--purpura-secundario);
}

/* FAQ */
.faq-item {
    background: var(--fondo-medio);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid var(--naranja-primario);
}

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

.faq-pregunta:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-respuesta {
    padding: 0 1.8rem 1.8rem;
    color: var(--texto-gris);
    line-height: 1.8;
}

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

.resena-card {
    background: var(--fondo-medio);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--purpura-primario);
    transition: all 0.3s ease;
}

.resena-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.resena-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.resena-autor {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--naranja-secundario);
}

.resena-estrellas {
    color: #FFD700;
    font-size: 1.3rem;
}

.resena-texto {
    color: var(--texto-gris);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.resena-fecha {
    font-size: 0.9rem;
    color: #888;
}

/* Footer */
footer {
    background: var(--fondo-oscuro);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid transparent;
    border-image: var(--gradiente-principal) 1;
}

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

.footer-seccion h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--naranja-secundario);
}

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

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

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

.footer-seccion ul li a:hover {
    color: var(--naranja-primario);
}

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

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .juegos-grid,
    .pagos-grid,
    .resenas-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones adicionales */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-jugar:hover {
    animation: pulse 1s infinite;
}
