.datagg-discord-widget {
    background: #1a1a1a;
    padding: 20px;
    max-width: 400px;
    color: #fff;
}
.widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.widget-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.widget-info h3 {
    margin: 0;
    font-size: 18px;
    color: var(--btn-color, #F1C95B);
}
.widget-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0 40px 0;
}
.widget-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--btn-color, #F1C95B);
}
.widget-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23a55a;
}
.widget-stat-dot.offline {
    background: #80848e;
}
.datagg-discord-widget .widget-join {
    background: var(--btn-color, #F1C95B);
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    margin-top: 15px;
}
.datagg-discord-widget .widget-join:hover {
    background: #5865F2;
    color: #fff;
}
.datagg-discord-widget .widget-join svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
