/* Google Font (optional but aesthetic) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #ffe6ea, #fff);
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Main container */
.container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 0, 80, 0.15);
    animation: fadeIn 1s ease;
}

/* Buttons wrapper */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* YES button */
#yes-button {
    background: linear-gradient(135deg, #ff5fa2, #ff2d55);
    color: white;
    border: none;
    height: 44px;
    padding: 0 22px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(255, 45, 85, 0.4);
}

#yes-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(255, 45, 85, 0.6);
}

/* NO button */
#no-button {
    background: linear-gradient(135deg, #777, #444);
    color: white;
    border: none;
    height: 44px;
    padding: 0 22px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

#no-button:hover {
    transform: scale(0.95);
    opacity: 1;
}

/* Remove extra spacing inside buttons */
#yes-button p,
#no-button p {
    margin: 0;
}

/* Message text */
.message {
    display: none;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #ff2d55;
}

/* Banner GIF */
.banner-gif {
    margin-top: 20px;
}

.banner-gif img {
    height: 230px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Language selector */
.language-selector {
    margin-top: 30px;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.language-selector label {
    font-size: 14px;
    color: #555;
}

.language-selector select {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* Creator link */
.creator {
    margin-top: 20px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.2s ease;
}

.creator:hover {
    color: #ff2d55;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        padding: 20px;
    }

    .banner-gif img {
        height: 200px;
    }
}
/* Presentation section */
.presentation {
    display: none;
    margin-top: 25px;
    animation: fadeIn 1.2s ease;
}

#slide-text {
    font-size: 22px;
    font-weight: 600;
    color: #ff2d55;
    min-height: 60px;
    animation: pop 0.6s ease;
}

@keyframes pop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.credit {
    margin-top: 20px;
}
