.wurstometer-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    height: 18px;
    margin: 15px 0;
}

.wurstometer-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    height: 100%;
} 

.discord-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.discord-server-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 15px rgba(255, 165, 2, 0.3);
}

.discord-info {
    text-align: left;
}

.status-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    height: 12px;
    width: 12px;
    background-color: #23a559;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #23a559;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

#discord-status {
    margin: 0;
    font-weight: bold;
    color: #ced4da;
}