:root {
    --primary: #FF007F; /* Rosa Fucsia Easybet */
    --primary-glow: rgba(255, 0, 127, 0.6);
    --secondary: #9D00FF; /* Violeta */
    --dark-bg: #050505;
    --text: #ffffff;
    --gold: #FFD700;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;

    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1511193311914-0346f16efe90?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* LOGO EASYBET */
.logo {
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary);
    letter-spacing: -2px;
}

.logo i {
    background: -webkit-linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TARJETA CON EFECTO VIDRIO */
.card {
    background: rgba(20, 10, 20, 0.8); /* Fondo oscuro transparente */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 127, 0.3); /* Borde Fucsia sutil */
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.15); /* Resplandor fucsia detrás */
    position: relative;
}

.verified-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 0 15px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 15px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

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

/* CAJA DE OFERTA */
.offer-box {
    background: linear-gradient(135deg, rgba(40, 0, 20, 0.6), rgba(0, 0, 0, 0.8));
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.1);
}

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

#bonus-text {
    font-size: 3rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin: 0;
    font-weight: 900;
    line-height: 1.1;
}

/* CAJA DE GIROS GRATIS */
.spins-box {
    margin-top: 12px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 0, 127, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

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

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

/* BOTÓN WHATSAPP NEON */
.btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #FF007F, #9D00FF);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.5);
    transition: transform 0.2s;
    animation: pulse 2s infinite;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

.btn-whatsapp i {
    font-size: 1.6rem;
    margin-right: 10px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 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.6rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary);
}

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

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