:root {
    --primary: #2CB34A; /* Verde bplay */
    --primary-hover: #24943D;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(0, 0, 0, 0.85); /* Fondo semitransparente */
    --gold: #FFD700;
    --text: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    
    /* FONDO DE CASINO REALISTA */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* LOGO bplay */
.logo {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(44, 179, 74, 0.6);
    letter-spacing: -2px;
}

/* TARJETA CON EFECTO VIDRIO */
.card {
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
}

.verified-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(44, 179, 74, 0.4);
    border: 2px solid #000;
    text-transform: uppercase;
}

h1 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 15px;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 400;
}

/* CAJA DEL BONO */
.offer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(44, 179, 74, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

/* Brillo animado */
.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% { left: 100%; }
}

.offer-label {
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

#bonus-text {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* CAJA DE TIROS GRATIS */
.spins-box {
    margin-top: 12px;
    font-size: 1rem;
    color: #eee;
    font-weight: 700;
    background: rgba(44, 179, 74, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid var(--primary);
}

.spins-box strong {
    color: var(--gold);
    font-size: 1.2rem;
}

.instruction {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #bbb;
}

/* BOTÓN WHATSAPP GRANDE */
.btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #34D158, #24943D);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(36, 148, 61, 0.4);
    transition: all 0.2s;
    animation: pulse 2s infinite;
    border-bottom: 4px solid #1a6b2c;
}

.btn-whatsapp:active {
    transform: translateY(4px);
    border-bottom: 0px solid #1a6b2c;
    box-shadow: 0 2px 10px rgba(36, 148, 61, 0.4);
}

.btn-whatsapp i {
    font-size: 1.8rem;
    margin-right: 12px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(44, 179, 74, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(44, 179, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(44, 179, 74, 0); }
}

/* TEXTO SEO INVISIBLE */
.seo-text {
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.01;
    position: absolute;
    bottom: 0;
}

/* FOOTER LEGAL */
.payment-methods {
    margin-top: 25px;
    color: #666;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.7;
}

footer {
    margin-top: 50px;
    font-size: 0.75rem;
    color: #888;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-weight: 700;
}
.legal-links a:hover {
    color: var(--primary);
}

.disclaimer {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
}

.age-icon {
    width: 30px;
    vertical-align: middle;
    margin-right: 5px;
}