*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#000000;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    min-height:100vh;
    padding:10px;
}

/* CONTENEDOR PRINCIPAL */
.container{
    width:100%;
    max-width:420px;   /* ideal para móviles */
    background:#000;
    padding:20px 15px;
    text-align:center;
    color:#fff;
    border-radius:12px;
}

/* TITULO */
.titulo{
    color:#23d100;
    font-size:clamp(60px, 5vw, 35px);
    font-weight:400;
    margin-bottom:20px;
    letter-spacing:-2px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* LOGO */
.logo img{
    width:60%;
    max-width:220px;
    aspect-ratio:1/1;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

/* CONTADOR */
.contador{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.box{
    background:linear-gradient(to bottom,#189100,#55d649e0);
    padding:10px 15px;
    border-radius:10px;
    font-size:clamp(36px,4vw,22px);
    font-weight:bold;
    color:#fff;
    min-width:55px;
}

/* BOTÓN TELEGRAM */
.btn-telegram{
    display:block;
    background:linear-gradient(to bottom,#189100,#55d649e0);
    padding:14px;
    border-radius:50px;
    color:#ffffff;
    font-weight:bold;
    text-decoration:none;
    margin-bottom:20px;
    line-height:22px;
    letter-spacing:1px;
    font-size:clamp(14px,4vw,17px);
}

.btn-telegram img{
    width:18px;
    height:18px;
    transform:translateY(3px);
    margin-left:6px;
}

/* TEXTO */
.texto{
    font-size:clamp(20px,3.5vw,15px);
    margin-bottom:20px;
    line-height:1.5;
}

/* DESCARGA */
.descarga{
    font-size:clamp(13px,3.5vw,15px);
    margin-bottom:10px;
}

/* BOTONES STORE */
.btn-store{
    display:block;
    background:#eee;
    color:#000;
    padding:16px;
    border-radius:30px;
    text-decoration:none;
    margin:2px 0;
    font-size:clamp(13px,3.5vw,15px);
    font-weight:700;
    width: 350px;
    transform: translateX(20px);
}

.btn-store img{
    height: 20px;
    width: 20px;
    transform: translateY(4px);
}

/* ================= RESPONSIVE ================= */

/* Tablets y celulares grandes */
@media (max-width: 768px){

    .container{
        max-width:95%;
        padding:18px 12px;
    }

    .btn-store{
        width:100%;
        transform:none;
    }

    .titulo{
        font-size:clamp(40px,8vw,50px);
    }

    .box{
        font-size:clamp(24px,6vw,36px);
        padding:8px 12px;
    }

    .texto{
        font-size:clamp(16px,4.5vw,20px);
    }
}

/* Celulares normales */
@media (max-width: 480px){

    .logo img{
        width:70%;
    }

    .btn-telegram{
        padding:16px;
        font-size:clamp(14px,5vw,18px);
    }

    .box{
        min-width:45px;
        padding:8px 10px;
    }

    .contador{
        gap:6px;
    }
}

/* Celulares muy pequeños */
@media (max-width: 360px){

    .titulo{
        letter-spacing:-1px;
    }

    .logo img{
        width:80%;
    }

    .btn-store{
        padding:14px;
        font-size:13px;
    }

    .texto{
        font-size:15px;
    }
}