/* style.css - Estilo limpio, positivo y con animaciones de salto (jump) */

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #2b3b4f 0%, #1d2a38 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 50px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffd966, #ffaa5e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(255, 200, 100, 0.3);
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: #ffaa5e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Título principal */
.titulo {
    margin-bottom: 20px;
}

.titulo-linea {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #aaccff;
    margin-bottom: 10px;
}

.titulo-destacado {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ffe3b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 15px rgba(255, 215, 100, 0.3);
}

/* Descripción */
.descripcion {
    font-size: 1.2rem;
    color: #e0e7ff;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.descripcion-highlight {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd966;
    margin-top: 10px;
}

/* Animación de cubos saltarines (JUMP) */
.animacion-jump {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    margin: 40px 0 40px;
}

.cube {
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, #ffaa5e, #ff8c42);
    border-radius: 8px;
    box-shadow: 0 5px 0 #b15d1f, 0 10px 20px rgba(0,0,0,0.3);
    animation: jump 1.2s infinite ease-in-out;
}

.cube2 {
    background: linear-gradient(145deg, #6c5ce7, #4a3bb5);
    animation-delay: 0.15s;
    box-shadow: 0 5px 0 #2a1f66;
}

.cube3 {
    background: linear-gradient(145deg, #00cec9, #009b97);
    animation-delay: 0.3s;
    box-shadow: 0 5px 0 #006b68;
}

.cube4 {
    background: linear-gradient(145deg, #fdcb6e, #e6a71f);
    animation-delay: 0.45s;
    box-shadow: 0 5px 0 #9e7215;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

/* Sección de notificación */
.notify {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 10px 20px 20px;
    margin: 30px 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-text {
    font-size: 1.1rem;
    color: #ccd6f0;
    margin-bottom: 15px;
}

.notify-button {
    background: linear-gradient(135deg, #ffd966, #ffaa5e);
    border: none;
    color: #1d2a38;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 0 #b1622b, 0 10px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.notify-button:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #b1622b, 0 10px 20px rgba(0,0,0,0.3);
}

.notify-button:active {
    transform: translateY(8px);
    box-shadow: 0 0px 0 #b1622b, 0 10px 20px rgba(0,0,0,0.3);
}

.button-emoji {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    margin-top: 40px;
    color: #99aacc;
    font-size: 1rem;
}

.footer-small {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Animación extra para el logo */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .titulo-destacado {
        font-size: 2.2rem;
    }
    
    .descripcion {
        font-size: 1rem;
    }
    
    .cube {
        width: 25px;
        height: 25px;
    }
    
    .notify-button {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
}