/* Support Popup Modal */
.support-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.support-popup-content {
    background-color: #2d2d2d;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: popupFadeIn 0.3s ease-out forwards;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.support-popup-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #dc3545;
    object-fit: cover;
}

.support-popup-title {
    color: #fff;
    font-family: 'Pirata One', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.support-popup-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-support-coffee {
    background-color: #dc3545;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
}

.btn-support-coffee:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.btn-support-secondary {
    background-color: transparent;
    color: #aaa;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-support-secondary:hover {
    color: #fff;
    border-color: #666;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-support-mute {
    background-color: transparent;
    color: #666;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-top: 5px;
}

.btn-support-mute:hover {
    color: #888;
}