* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFC0CB 50%, #FFB6C1 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #FF69B4;
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.5);
}

.heart {
    font-size: 4em;
    margin: 20px 0;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1); 
    }
}

.question {
    font-size: 1.8em;
    color: #FF1493;
    margin: 30px 0;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

button {
    padding: 15px 40px;
    font-size: 1.2em;
    border: 3px solid #FF69B4;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#yesBtn {
    background-color: #FF69B4;
    color: white;
}

#yesBtn:hover {
    background-color: #FF1493;
    transform: scale(1.05);
}

#noBtn {
    background-color: white;
    color: #FF69B4;
}

#noBtn:hover {
    background-color: #FFE5E5;
}

.message {
    display: none;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.message h2 {
    color: #FF1493;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.message p {
    color: #FF69B4;
    font-size: 1.5em;
    line-height: 1.6;
}

.celebration {
    font-size: 3em;
    margin: 20px 0;
}

@keyframes shake {
    0%, 100% { 
        transform: translateX(0); 
    }
    25% { 
        transform: translateX(-10px); 
    }
    75% { 
        transform: translateX(10px); 
    }
}