body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffd6e8, #ffeef6);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    max-width: 400px;
}

h1 {
    color: #ff4da6;
}

.cute-img {
    width: 180px;
    margin: 20px 0;
    transition: 0.3s ease;
}

.message {
    color: #ff4da6;
    font-weight: bold;
    min-height: 30px;
}

.buttons {
    margin-top: 20px;
}

button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 8px;
    transition: 0.3s ease;
    font-weight: bold;
}

#yesButton {
    background: linear-gradient(45deg, #ff4da6, #ff85c1);
    color: white;
}

#noButton {
    background: white;
    color: #ff4da6;
    border: 2px solid #ff4da6;
}

#finalScreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hidden {
    display: none;
}
