body {
    background-color: white;
    font-family: 'Poppins', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 90vw;
}

#no-button {
    margin: 0;
    color: white;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    min-height: 50px;
    min-width: 120px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    padding: 10px 16px;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#no-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

#no-button:active {
    transform: translateY(0);
}

#no-button p {
    margin: 0;
    object-fit: contain;
    word-break: break-word;
    line-height: 1.3;
}

#yes-button {
    margin: 0;
    color: white;
    border: none;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    cursor: pointer;
    min-height: 50px;
    min-width: 120px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#yes-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
}

#yes-button:active {
    transform: translateY(0);
}

#yes-button p {
    margin: 0;
    object-fit: contain;
}

/* Make responsive for mobile */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }
    
    #question-heading {
        font-size: 1.8rem;
        margin: 15px 10px;
    }
    
    .buttons {
        gap: 12px;
        margin-top: 30px;
        max-width: 95vw;
    }
    
    #yes-button, #no-button {
        min-height: 45px;
        min-width: 100px;
        font-size: 13px;
        padding: 8px 12px;
        max-width: 130px;
    }
    
    .language-buttons {
        gap: 8px;
    }
    
    .lang-btn {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .container {
        padding: 15px;
        margin-top: 10px;
    }
    
    .banner-gif img {
        height: 200px;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
}

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

.message h2 {
    font-size: 2rem;
    color: #ff1493;
    margin: 20px 0;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-gif {
    width: 100%;
    height: auto;
    margin-top: 20px;

    img {
        width: auto;
        height: 250px;
    }
}

.language-selector {
    margin-top: 40px;
    margin-bottom: 20px;
    position: unset;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.language-selector label {
    font-size: 14px;
    color: #ff6b9d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.lang-btn {
    padding: 10px 18px;
    border: 2px solid #ff6b9d;
    background-color: white;
    color: #ff6b9d;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

.lang-btn:hover {
    background-color: #ffe5ec;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.5);
}

.creator {
    text-decoration: none;
    color: #333;
}

.creator:visited {
    text-decoration: none;
    color: #333;
}

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

/* CSS For Mobile */
@media (max-width: 768px) {
    .language-selector {
        position: unset;
        margin-top: 30px;
        font-family: 'Poppins', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}