/* ===== BASE ===== */
body{
    margin:0;
    font-family:'Montserrat', sans-serif;
    background:url('casino.jpg') no-repeat center/cover;
    color:#fff;
    text-align:center;
}

/* fondo oscuro overlay */
body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    z-index:-1;
}

/* ===== TOP BAR ===== */
.topbar{
    position:absolute;
    top:10px;
    left:10px;
    display:flex;
    align-items:center;
    gap:15px;
}

/* LOGO */
.logo-mini{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #ff00ff;
    box-shadow:0 0 10px #ff00ff, 0 0 25px #a855f7;
}

/* MENU */
.menu{
    display:flex;
    gap:10px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

/* ===== LOGO CENTRAL ===== */
.logo-circle{
    width:170px;
    height:170px;
    border-radius:50%;
    overflow:hidden;
    margin:90px auto 20px auto;
    box-shadow:0 0 25px #ff00ff, 0 0 60px #a855f7;
}

.logo-circle img{
    width:100%;
}

/* ===== TITULO ===== */
.titulo{
    font-size:55px;
    font-family:'Playfair Display', serif;
    font-style:italic;
    color:#ff4dff;
    text-shadow:0 0 10px #ff00ff, 0 0 25px #a855f7;
    margin:10px 0;
}

/* ===== SUBTITULO ===== */
.subtitulo{
    font-size:18px;
    background:linear-gradient(90deg,#fff,#60a5fa,#a855f7);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===== BOTONES ===== */
.botones{
    margin-top:20px;
}

.btn{
    padding:12px 25px;
    border-radius:10px;
    text-decoration:none;
    margin:10px;
    display:inline-block;
    font-weight:bold;
    color:#fff;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

.wsp{background:#25d366;}
.ganar{background:linear-gradient(90deg,#a855f7,#ff00ff);}
.bet30{background:linear-gradient(90deg,#3b82f6,#a855f7);}

/* ===== PRESENTACION ===== */
.presentacion{
    margin-top:30px;
    font-size:18px;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
    color:#fff;
    text-shadow:0 0 10px #ffffff, 0 0 20px #ffffff;
    line-height:1.6;
}

/* ===== VIDEO NEÓN ===== */
.video-neon{
    width:90%;
    max-width:700px;
    display:block;
    margin:30px auto;
    border:3px solid #a855f7;
    border-radius:15px;
    box-shadow:0 0 10px #a855f7,
                0 0 20px #a855f7,
                0 0 40px #7c3aed;
}

/* evita fullscreen en celular */
video{
    outline:none;
}

/* ===== PANELES ===== */
.paneles{
    margin-top:60px;
}

.paneles h2{
    color:#a855f7;
}

.imagenes{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.imagenes img{
    width:220px;
    border-radius:10px;
    box-shadow:0 0 15px #a855f7;
}

/* ===== REFERIDOS ===== */
.referidos{
    margin-top:60px;
}

.texto-ref{
    color:#a855f7;
    font-weight:bold;
}

.flecha{
    font-size:30px;
    animation:mover 1s infinite alternate;
}

@keyframes mover{
    from{transform:translateX(0);}
    to{transform:translateX(20px);}
}

/* ===== RECLAMOS ===== */
.reclamo-box{
    max-width:600px;
    margin:0 auto;
    padding:25px;
    border-radius:12px;
    background:rgba(0,0,0,0.6);
    border:2px solid #ff00ff;
    box-shadow:0 0 15px #ff00ff, 0 0 30px #a855f7;
    color:#fff;
}

.reclamo-btn{
    background:linear-gradient(90deg,#ff00ff,#a855f7);
    margin-top:15px;
}

/* ===== FINAL ===== */
.final{
    margin-top:50px;
}

.final h2{
    color:#a855f7;
}

.final span{
    color:#ff00ff;
    font-weight:bold;
}

/* ===== FOOTER ===== */
footer{
    margin-top:50px;
    padding:20px;
    background:#111;
}

.firma{
    margin-top:10px;
    color:#a855f7;
    font-weight:bold;
}

/* ========================= */
/* 📱 RESPONSIVE CELULAR */
/* ========================= */

@media (max-width: 768px){

    .titulo{
        font-size:32px;
    }

    .subtitulo{
        font-size:14px;
        padding:0 10px;
    }

    .presentacion{
        font-size:14px;
        padding:0 15px;
    }

    .botones{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:80%;
        text-align:center;
    }

    .imagenes img{
        width:90%;
    }

    .topbar{
        position:static;
        justify-content:center;
        margin-top:10px;
    }

    .logo-circle{
        width:140px;
        height:140px;
    }
}
