/* Container fixo */
#discord-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

/* Ícone do Discord */
#discord-icon img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5865F2;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#discord-icon img:hover {
    transform: scale(1.1);
}

/* POPUP */
#discord-popup {
    width: 260px;
    background: #1e1f24;
    color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.8);
    animation: popupFade 0.2s ease-in-out;
}

.hidden {
    display: none;
}

.discord-header h3 {
    margin: 0;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.discord-body {
    text-align: center;
    padding-top: 10px;
}

.server-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #5865F2;
    margin-bottom: 10px;
}

.join-btn {
    display: inline-block;
    background: #5865F2;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: 0.3s;
    font-weight: bold;
}

.join-btn:hover {
    background: #4752C4;
}

@keyframes popupFade {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
