body {
    font-family: 'Parisienne', cursive;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 90%, #fbc2eb 100%);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ff6b6b" d="M50 30c-10 0-15 10-15 15 0 5 5 10 15 10 10 0 15-5 15-10 0-5-5-15-15-15z"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.container {
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}

p {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Parisienne', cursive;
}

#yesButton {
    background-color: #ff6b6b;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

#yesButton:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

#noButton {
    background-color: #f0f0f0;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#noButton:hover {
    transform: translateY(-5px);
}

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

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.celebration {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    backdrop-filter: blur(5px);
}

.celebration h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-out;
}

.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

#loveMessage {
    font-size: 2rem;
    margin-top: 20px;
    font-family: 'Dancing Script', cursive;
    animation: fadeIn 2s ease-in-out;
}