/* Importar fuente más suave */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 650px;
    box-shadow: 0px 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

/*.pixel-heart {
    font-size: 80px;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(129, 199, 132, 0.3));
}*/

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
}

.main-text {
    color: #66bb6a;
    font-size: 50px;
    margin: 30px 0;
    font-weight: 600;
    line-height: 1.4;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
}

.yes-btn {
    background: #81c784;
    color: white;
    transition: transform 0.3s ease;
}

.yes-btn:hover {
    background: #66bb6a;
}

.no-btn {
    background: #ffab91;
    color: white;
    /*transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);*/
}

.no-btn:hover {
    background: #ff8a65;
}

.no-btn.moving {
    position: fixed !important;
    z-index: 9999;
}

/* Animación de emojis */
.tulip {
    position: fixed;
    font-size: 42px;
    pointer-events: none;
    animation: fall linear forwards;
    z-index: 1000;
}

@keyframes fall {
    from {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.pop {
    animation: popIn 0.6s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.big-heart {
    font-size: 120px;
    animation: heartbeat 1.2s infinite;
}

.celebration-title {
    color: #4caf50;
    margin-top: 10px;
    font-size: 48px;
}

.celebration-text {
    margin-top: 15px;
    font-size: 38px;
}

.celebration-sub {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 28px;
}