* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: radial-gradient(circle, #151f1a 0%, #0b0f0d 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor estilo Pantalla de Celular */
.landing-container {
    background: #0d1210;
    max-width: 400px;
    width: 100%;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid #1b2621;
}

/* Ajustes automáticos para tu logo oficial */
.mi-logo-oficial {
    max-width: 220px;      /* Controla el ancho de tu logo en pantalla */
    height: auto;          /* Evita que el logo se deforme */
    margin: 10px auto 25px auto; /* Margen limpio para separarlo del título */
    display: block;        /* Lo centra perfectamente */
}

/* Título */
.main-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Animación de flotado para las monedas doradas */
.hero-visual {
    margin-bottom: 30px;
    position: relative;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ball-wrapper { position: relative; font-size: 4.5rem; }
.coin {
    position: absolute;
    font-size: 1.4rem; /* Un poco más grandes para que resalten */
    animation: flotar 3s ease-in-out infinite alternate;
}
.c1 { top: -10px; left: -25px; animation-delay: 0.2s; }
.c2 { bottom: 10px; right: -30px; animation-delay: 0.5s; }
.c3 { top: 40px; left: 65px; animation-delay: 0.8s; }

@keyframes flotar {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-10px) scale(1.1); }
}

/* BOTÓN LLAMATIVO VERDE */
.btn-descargar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #28cd41 0%, #1da832 100%);
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(40, 205, 65, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}
.btn-descargar:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(40, 205, 65, 0.6);
}

.sub-text {
    font-size: 0.85rem;
    color: #2ecc71;
    text-decoration: underline;
    margin-bottom: 30px;
    cursor: pointer;
}

/* Contenedores morados estilo tu Historial de Unity */
.beneficios-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.fila-beneficio {
    background: #181124; 
    border: 1px solid #2a1d3d;
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.fila-beneficio p {
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}