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

body {
    background: linear-gradient(135deg, #ffb3d9 0%, #ffc4e1 50%, #ffd4eb 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.question {
    font-size: 3.5rem;
    color: #ff1493;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

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

.buttons {
    display: flex;
    gap: 30px;
    position: relative;
}

button {
    padding: 20px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.yes-btn {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    transition: transform 0.3s ease;
}

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

.no-btn {
    background: linear-gradient(135deg, #ddd, #eee);
    color: #666;
    position: absolute;
    left: 200px;
    touch-action: manipulation;
}

/* Thank you page styles */
.thank-you {
    text-align: center;
}

.thank-you h1 {
    font-size: 4rem;
    color: #ff1493;
    margin-bottom: 30px;
    animation: celebrate 1s ease-in-out;
}

@keyframes celebrate {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you p {
    font-size: 2rem;
    color: #ff69b4;
}
