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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.container > *:not(.footer) {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question {
    font-size: 2.5rem;
    color: #d6336c;
    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-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    min-height: 150px;
    align-items: center;
    position: relative;
}

.btn {
    padding: 15px 50px;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yes-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    box-shadow: 0 4px 15px rgba(238, 90, 90, 0.4);
}

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

.yes-btn:active {
    transform: scale(0.95);
}

.no-btn {
    background: linear-gradient(135deg, #a8a8a8, #888888);
    color: white;
    box-shadow: 0 4px 15px rgba(136, 136, 136, 0.4);
    position: relative;
}

.no-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.no-btn:active {
    background: linear-gradient(135deg, #a8a8a8, #888888);
    transform: none;
}

.celebration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.celebration.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.celebration-content {
    text-align: center;
    padding: 20px;
}

.celebration-content h1 {
    font-size: 4rem;
    color: #d6336c;
    margin-bottom: 20px;
    animation: bounce 0.6s ease infinite;
}

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

.message {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.celebration-gif {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
    padding: 20px 0;
}

.credit {
    text-decoration: none;
    color: #666;
}

.credit:hover {
    color: #d6336c;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .question {
        font-size: 1.8rem;
        margin-bottom: 80px;
    }

    .btn {
        padding: 12px 35px;
        font-size: 1.1rem;
    }

    .buttons-container {
        gap: 20px;
    }

    .celebration-content h1 {
        font-size: 3rem;
    }

    .message {
        font-size: 1.2rem;
    }

    .celebration-gif {
        width: 250px;
    }
}