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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Fox decorations */
body::before {
    content: '🦊';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.6;
}

body::after {
    content: '🦊';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.6;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

/* Floating hearts background */
.container::before {
    content: '💕 💝 💖 ❤️ 💕 💝 💖 ❤️';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

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

.screen {
    display: none;
    text-align: center;
}

.screen.active {
    display: block;
}

.question {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.question::before {
    content: '🦊 ';
}

.question::after {
    content: ' 🦊';
}

.buttons-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    min-height: 100px;
}

.btn {
    padding: 15px 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, #ff6b9d 0%, #ff8fab 100%);
    color: white;
}

.yes-btn::before {
    content: '💕 ';
}

.yes-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.no-btn {
    background: linear-gradient(135deg, #ffd6e8 0%, #ffe4f0 100%);
    color: #666;
    position: fixed;
    transition: all 0.2s ease;
    z-index: 1000;
}

.celebration {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.celebration::before {
    content: '🦊 ';
}

.celebration::after {
    content: ' 🦊';
}

.success-message {
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.success-message::before {
    content: '💕 ';
}

.success-message::after {
    content: ' 💕';
}

/* Mobile responsive */
@media (max-width: 768px) {
    body::before,
    body::after {
        font-size: 2rem;
    }
    
    .question {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
    
    .buttons-container {
        gap: 1.5rem;
    }
    
    .celebration {
        font-size: 2.5rem;
    }
    
    .success-message {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body::before,
    body::after {
        font-size: 1.5rem;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
    }
    
    .question {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .celebration {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1.2rem;
    }
}
