#dev-message {
    position: fixed;
    bottom: 35px;
    right: 50px;
    background-color: #0066cc;
    color: white;
    font-size: 20px;
    padding: 16px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    z-index: 1500;
}

#dev-message .close-btn {
    margin-left: 20px;
    color: white;
    cursor: pointer;
    font-size: 25px;
}

#dev-message p {
    margin: 0;
    flex-grow: 1;
}

.quote-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 14px 20px;
    max-width: 320px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.45s ease, transform 0.45s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.quote-popup::before { content: "💬"; font-size: 22px; }

.quote-popup.show { opacity: 1; transform: translateY(0) scale(1); }
.quote-popup.hidden { display: none; }

#ban-message, #ban-error-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 20px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
    animation: float 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    text-align: center;
    width: auto;
    max-width: 90%;
    word-wrap: break-word;
}

#ban-message { background: rgba(200, 0, 0, 0.9); border: 3px solid darkred; }
#ban-error-message { background: rgba(255, 165, 0, 0.9); color: black; border: 3px solid darkorange; }

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