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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(-45deg, #0d0520, #1a0f2e, #2d1436, #0d0520);
    background-size: 400% 400%;
    animation: galaxyMove 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

@keyframes galaxyMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    max-width: 650px;
    width: 90%;
    position: relative;
    z-index: 1;
}

.question {
    font-size: 2.8rem;
    color: #ff6b9d;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 80px;
}

.btn {
    padding: 18px 50px;
    font-size: 1.4rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.btn:active {
    transform: translateY(-1px);
}

.yes-btn {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.yes-btn.bigger {
    padding: 28px 80px;
    font-size: 2rem;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.no-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.no-btn.moving {
    position: absolute;
    transition: none !important;
}

.success-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.success-message {
    font-size: 1.6rem;
    color: #ff6b9d;
    font-weight: 600;
}

@media (max-width: 600px) {
    .container {
        padding: 60px 40px;
    }
    
    .question {
        font-size: 2rem;
    }
    
    .btn {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .yes-btn.bigger {
        padding: 22px 60px;
        font-size: 1.6rem;
    }
}
