:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --bg-color: #fff0f3;
    --text-color: #590d22;
    --white: #ffffff;
}

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

body {
    background-color: var(--bg-color);
    font-family: 'Quicksand', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.2);
    max-width: 90%;
    width: 600px;
}

.image-container {
    margin-bottom: 2rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 300px;
    object-fit: cover;
}

h1.question {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping if buttons get huge */
}

.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.yes-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}

.yes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.6);
}

.no-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.no-btn:hover {
    background-color: var(--bg-color);
}

#success-message {
    margin-top: 2rem;
}

#success-message h2 {
    font-family: 'Pacifico', cursive;
    color: var(--text-color);
    font-size: 2.5rem;
    animation: bounce 1s infinite;
}

.hidden {
    display: none;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    h1.question {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
