body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background: #050505;
    font-family: 'Arial Black', sans-serif;
    color: #fff;
    background: rgba(0, 32, 20)
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
}

.logo img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 10px #00ff8a);
}

.logo h1 {
    margin: 10px 0 0;
    color: #00ff8a;
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #00ff8a;
}

.logo span {
    display: block;
    font-size: 18px;
    margin-top: -10px;
    opacity: 0.8;
}

.promo-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 80, 0.2);
    box-shadow: 0 0 25px rgba(0,255,120,0.2);
}

.linea {
    font-size: 22px;
    color: #00ff8a;
    text-shadow: 0 0 5px #00ff8a;
}

.emoji {
    text-shadow: 0;
}


.retiros {
    font-size: 32px;
    color: #ffd740;
    margin: 15px 0;
    text-shadow: 0 0 5px #ffd740;
}

.bono {
    font-size: 22px;
    color: #00ff8a;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    padding: 18px 40px;
    font-size: 20px;
    background: linear-gradient(90deg, #00cc55, #00ff88);
    color: #fff;
    border-radius: 40px;
    font-weight: bold;
    box-shadow: 0 0 20px #00ff88;
    transition: 0.2s;
    animation: pulse 1.5s infinite;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #00ff88;
}

.juegos {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    max-height: 100px;
    max-width: 100px;
}

.juego img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    box-shadow: 0 0 2px #0f0;
    border: 1px solid rgba(74, 241, 8, 0.705);
    padding: 5px;
}

.juego img:hover {
    transform: scale(1.07); /* 🔥 Aumenta apenas */
    box-shadow: 0 0 18px #00ff80; /* Brillo fuerte */
}

@media (max-width: 500px) {
    .promo-box2 {
        transform: scale(0.85); /* ejemplo: achicar */
        padding: 15px;          /* menos padding */
        width: 80%;
    }
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }